scala.collection.Traversable

class PairTraversableOps

[source: scala/collection/Traversable.scala]

class PairTraversableOps[This <: Traversable[(A1, A2)], A1, A2](self : This)
extends AnyRef
A wrapper class which adds an `unzip` method to iterable whose elements are pairs.
Method Summary
def unzip [That1, That2](implicit bf1 : BuilderFactory[A1, That1, This], implicit bf2 : BuilderFactory[A2, That2, This]) : (That1, That2)
Returns a pair of iterables consisting of the first, respectively second, component of all elements in the wrapped iterable `self`.
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def unzip[That1, That2](implicit bf1 : BuilderFactory[A1, That1, This], implicit bf2 : BuilderFactory[A2, That2, This]) : (That1, That2)
Returns a pair of iterables consisting of the first, respectively second, component of all elements in the wrapped iterable `self`.