NonEmptyIterable.ts overview
Since v2.0.0
Exports Grouped by Category
getters
unprepend
Signature
declare const unprepend: <A>(self: NonEmptyIterable<A>) => [firstElement: A, remainingElements: Iterator<A>]
Since v2.0.0
model
NonEmptyIterable (interface)
Signature
export interface NonEmptyIterable<out A> extends Iterable<A> {
readonly [nonEmpty]: A
}
Since v2.0.0