![]() |
VOOZH | about |
Method Definition: def splitAt(n: Int): (Set[A], Set[A]) Where, n is the position at which we need to split. Return Type: It returns a pair of sets consisting of the first n elements of this set, and the other elements.Example #1:
(Set(4, 12), Set(2, 31))
(Set(1, 2),Set(3, 4))