/** * Creates a sink containing the first value. * * @tsplus static effect/core/stream/Sink.Ops head */ export function head(): Sink> { return Sink.fold( Maybe.empty(), (option: Maybe) => option.isNone(), (option: Maybe, input) => (option.isSome() ? option : Maybe.some(input)) ) }