Tuple2Zipped

scala.runtime.Tuple2Zipped
See theTuple2Zipped companion object
final class Tuple2Zipped[El1, It1 <: Iterable[El1], El2, It2 <: Iterable[El2]](colls: (It1, It2)) extends AnyVal, ZippedIterable2[El1, El2]

Attributes

Companion
object
Deprecated
[Since version 2.13.0] Use scala.collection.LazyZip2.
Graph
Supertypes
trait ZippedIterable2[El1, El2]
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def exists(p: (El1, El2) => Boolean): Boolean
def filter[To1, To2](f: (El1, El2) => Boolean)(implicit bf1: BuildFrom[It1, El1, To1], bf2: BuildFrom[It2, El2, To2]): (To1, To2)
def flatMap[B, To](f: (El1, El2) => IterableOnce[B])(implicit bf: BuildFrom[It1, B, To]): To
def forall(p: (El1, El2) => Boolean): Boolean
def foreach[U](f: (El1, El2) => U): Unit
override def isEmpty: Boolean

Attributes

Definition Classes
def iterator: Iterator[(El1, El2)]
def map[B, To](f: (El1, El2) => B)(implicit bf: BuildFrom[It1, B, To]): To
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any