TreapSetOfInt.of constructor
TreapSetOfInt.of(
- Iterable<
int> items, [ - Comparator<
int> ? compare
Implementation
TreapSetOfInt.of(Iterable<int> items, [Comparator<int>? compare])
: base = TreapSetBase.of(
items,
intNodeFactory,
compare ?? (a, b) => a - b,
);