Creates an empty sequence.
Type of elements that the returned sequence can produce.
A reusable, cached empty sequence.
The returned instance is immutable and can be shared safely across callers.
const emptySequence = empty<number>();console.log(emptySequence.toArray()); // [] Copy
const emptySequence = empty<number>();console.log(emptySequence.toArray()); // []
Creates an empty sequence.