import { Applied, Message, MessageType } from "silentium"; /** * Represents the first element Of an array. */ export function First>($base: MessageType) { return Message(function FirstImpl(r) { Applied($base, (a) => a[0]).then(r); }); }