Skip to main content
Module

x/rimbu/mod.ts>SortedSet.NonEmpty

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface SortedSet.NonEmpty
implements [RSetBase.NonEmpty]<T, SortedSet.Types>, Omit<SortedSet<T>, keyof RSetBase.NonEmpty<any, any>>, [Streamable.NonEmpty]<T>
import { type SortedSet } from "https://deno.land/x/rimbu@0.13.1/mod.ts";
const { NonEmpty } = SortedSet;

A non-empty type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the SortedSet API documentation

Examples

Example 1

const s1 = SortedSet.empty<string>()
const s2 = SortedSet.of('a', 'b', 'c')

Methods

stream(reversed?: boolean): Stream.NonEmpty<T>
min(): T

Returns the minimum value of the SortedSet.

max(): T

Returns the maximum value of the SortedSet.

take<N extends number>(amount: N): 0 extends N ? SortedSet<T> : SortedSet.NonEmpty<T>