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