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