The splitAt() method is utilized to split the given set into a prefix/suffix pair at a stated position.
Scala
Scala
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:
// Scala program of splitAt()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(4, 12, 2, 31)
// Applying splitAt method
val result = s1.splitAt(2)
// Display output
println(result)
}
}
Output:
Example #2:
(Set(4, 12), Set(2, 31))
// Scala program of splitAt()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(1, 2, 3, 4)
// Applying splitAt method
val result = s1.splitAt(2)
// Display output
println(result)
}
}
Output:
(Set(1, 2),Set(3, 4))