takeWhile method
Returns a new set containing the leading elements while test
is true.
Implementation
TreapSetOfInt takeWhile(bool Function(int value) test) =>
TreapSetOfInt._(base.takeWhile(test));
Returns a new set containing the leading elements while test
is true.
TreapSetOfInt takeWhile(bool Function(int value) test) =>
TreapSetOfInt._(base.takeWhile(test));