type NonEmpty<T>
Any object that is a non-empty Stream, can produce a non-empty Stream, or is a non-empty array.
Definition
type NonEmpty<T> = Stream.NonEmpty<T> | Streamable.NonEmpty<T> | readonly [T, ...T[]];
type NonEmpty<T>Any object that is a non-empty Stream, can produce a non-empty Stream, or is a non-empty array.
type NonEmpty<T> = Stream.NonEmpty<T> | Streamable.NonEmpty<T> | readonly [T, ...T[]];