Skip to content
Effect Days 2026 Get your ticket

NonEmptyIterable

3 exports Added in v2.0.0 Source

Getters

unprepend

Added in v2.0.0 Source

Signature

declare function unprepend<A>(self: NonEmptyIterable<A>): [firstElement: A, remainingElements: Iterator<A, any, any>]

Model

NonEmptyIterable interface

Added in v2.0.0 Source

Signature

interface NonEmptyIterable<out A> extends Iterable<A> {
readonly [nonEmpty]: A;
}

Symbol

nonEmpty

Added in v2.0.0 Source

Signature

declare const nonEmpty: unique symbol