![]() |
VOOZH | about |
TreeSet class, the drop() method is utilized to drop the first ānā elements of the TreeSet.
Method Definition: def drop(n: Int): TreeSet[A] Return Type: It returns a new TreeSet with all the elements except the first ānā ones.Example #1:
TreeSet(2, 4, 6, 7, 8, 9) TreeSet after using drop(2) method: TreeSet(6, 7, 8, 9)
TreeSet(2, 4, 6, 7, 8, 9) TreeSet after using drop(3) method: TreeSet(7, 8, 9)