/** * Creates a sink containing the last value. * * @tsplus static effect/core/stream/Sink.Ops last */ export function last(): Sink> { return Sink.foldLeft(Maybe.empty(), (_, input) => Maybe.some(input)) }