final class LazyZip3[El1, El2, El3, C1 <: Iterable[El1]] extends AnyRef

Decorator representing lazily zipped triples.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyZip3
  2. AnyRef
  3. Any
Implicitly
  1. by lazyZip3ToIterable
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: A](suffix: Iterable[B]): View[B]

    Alias for concat

    Alias for concat

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def className: String

    The class name of this collection.

    The class name of this collection. To be used for converting to string. Collections generally print like this:

    <className>(elem_1, ..., elem_n)

    returns

    a string representation which starts the result of toString applied to this view. By default the string prefix is the simple name of the collection class view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    ViewIterableOps
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def collect[B](pf: PartialFunction[(El1, El2, El3), B]): View[B]

    Builds a new collection by applying a partial function to all elements of this view on which the function is defined.

    Builds a new collection by applying a partial function to all elements of this view on which the function is defined.

    B

    the element type of the returned collection.

    pf

    the partial function which filters and maps the view.

    returns

    a new view resulting from applying the given partial function pf to each element on which it is defined and collecting the results. The order of the elements is preserved.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  9. def collectFirst[B](pf: PartialFunction[(El1, El2, El3), B]): Option[B]

    Finds the first element of the view for which the given partial function is defined, and applies the partial function to it.

    Finds the first element of the view for which the given partial function is defined, and applies the partial function to it.

    Note: may not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    pf

    the partial function

    returns

    an option value containing pf applied to the first value for which it is defined, or None if none exists.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)

  10. def concat[B >: A](suffix: Iterable[B]): View[B]

    Returns a new view containing the elements from the left hand operand followed by the elements from the right hand operand.

    Returns a new view containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the view is the most specific superclass encompassing the element types of the two operands.

    B

    the element type of the returned collection.

    suffix

    the traversable to append.

    returns

    a new view which contains all elements of this view followed by all elements of suffix.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  11. def copyToArray[B >: A](xs: Array[B], start: Int = 0): xs.type

    Copy all elements of this collection to array xs, starting at start.

    Copy all elements of this collection to array xs, starting at start.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  12. def count(p: ((El1, El2, El3)) ⇒ Boolean): Int

    Counts the number of elements in the view which satisfy a predicate.

    Counts the number of elements in the view which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  13. def drop(n: Int): View[(El1, El2, El3)]

    The rest of the collection without its n first elements.

    The rest of the collection without its n first elements. For linear, immutable collections this should avoid making a copy.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  14. def dropRight(n: Int): View[(El1, El2, El3)]

    The rest of the collection without its n last elements.

    The rest of the collection without its n last elements. For linear, immutable collections this should avoid making a copy.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  15. def dropWhile(p: ((El1, El2, El3)) ⇒ Boolean): View[(El1, El2, El3)]

    Drops longest prefix of elements that satisfy a predicate.

    Drops longest prefix of elements that satisfy a predicate.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    p

    The predicate used to test elements.

    returns

    the longest suffix of this view whose first element does not satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def exists(p: (El1, El2, El3) ⇒ Boolean): Boolean
  19. def filter[C](p: (El1, El2, El3) ⇒ Boolean)(implicit bf: BuildFrom[C1, (El1, El2, El3), C]): C
  20. def filterNot(pred: ((El1, El2, El3)) ⇒ Boolean): View[(El1, El2, El3)]

    Selects all elements of this view which do not satisfy a predicate.

    Selects all elements of this view which do not satisfy a predicate.

    pred

    the predicate used to test elements.

    returns

    a new view consisting of all elements of this view that do not satisfy the given predicate pred. Their order may not be preserved.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def find(p: ((El1, El2, El3)) ⇒ Boolean): Option[(El1, El2, El3)]

    Finds the first element of the view satisfying a predicate, if any.

    Finds the first element of the view satisfying a predicate, if any.

    Note: may not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    p

    the predicate used to test elements.

    returns

    an option value containing the first element in the view that satisfies p, or None if none exists.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  23. def flatMap[B, C](f: (El1, El2, El3) ⇒ Iterable[B])(implicit bf: BuildFrom[C1, B, C]): C
  24. def flatten[B](implicit asIterable: ((El1, El2, El3)) ⇒ IterableOnce[B]): View[B]

    Converts this view of traversable collections into a view formed by the elements of these traversable collections.

    Converts this view of traversable collections into a view formed by the elements of these traversable collections.

    The resulting collection's type will be guided by the type of view. For example:

    val xs = List(
               Set(1, 2, 3),
               Set(1, 2, 3)
             ).flatten
    // xs == List(1, 2, 3, 1, 2, 3)
    
    val ys = Set(
               List(1, 2, 3),
               List(3, 2, 1)
             ).flatten
    // ys == Set(1, 2, 3)
    B

    the type of the elements of each traversable collection.

    asIterable

    an implicit conversion which asserts that the element type of this view is a GenTraversable.

    returns

    a new view resulting from concatenating all element views.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  25. def foldLeft[B](z: B)(op: (B, (El1, El2, El3)) ⇒ B): B

    Applies a binary operator to a start value and all elements of this view, going left to right.

    Applies a binary operator to a start value and all elements of this view, going left to right.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this view, going left to right with the start value z on the left:

    op(...op(z, x_1), x_2, ..., x_n)

    where x1, ..., xn are the elements of this view. Returns z if this view is empty.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  26. def foldRight[B](z: B)(op: ((El1, El2, El3), B) ⇒ B): B

    Applies a binary operator to all elements of this view and a start value, going right to left.

    Applies a binary operator to all elements of this view and a start value, going right to left.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this view, going right to left with the start value z on the right:

    op(x_1, op(x_2, ... op(x_n, z)...))

    where x1, ..., xn are the elements of this view. Returns z if this view is empty.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  27. def forall(p: (El1, El2, El3) ⇒ Boolean): Boolean
  28. def foreach[U](f: (El1, El2, El3) ⇒ U): Unit
  29. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def groupBy[K](f: ((El1, El2, El3)) ⇒ K): immutable.Map[K, View[(El1, El2, El3)]]

    Partitions this view into a map of views according to some discriminator function.

    Partitions this view into a map of views according to some discriminator function.

    Note: When applied to a view or a lazy collection it will always force the elements.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to views such that the following invariant holds:

    (xs groupBy f)(k) = xs filter (x => f(x) == k)

    That is, every key k is bound to a view of those elements x for which f(x) equals k.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  31. def groupMap[K, B](key: ((El1, El2, El3)) ⇒ K)(f: ((El1, El2, El3)) ⇒ B): immutable.Map[K, View[B]]

    Partitions this view into a map of views according to a discriminator function key.

    Partitions this view into a map of views according to a discriminator function key. Each element in a group is transformed into a value of type B using the value function.

    It is equivalent to groupBy(key).mapValues(_.map(f)), but more efficient.

    case class User(name: String, age: Int)
    
    def namesByAge(users: Seq[User]): Map[Int, Seq[String]] =
      users.groupMap(_.age)(_.name)
    K

    the type of keys returned by the discriminator function

    B

    the type of values returned by the transformation function

    key

    the discriminator function

    f

    the element transformation function

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  32. def groupMapReduce[K, B](key: ((El1, El2, El3)) ⇒ K)(f: ((El1, El2, El3)) ⇒ B)(reduce: (B, B) ⇒ B): immutable.Map[K, B]

    Partitions this view into a map according to a discriminator function key.

    Partitions this view into a map according to a discriminator function key. All the values that have the same discriminator are then transformed by the value function and then reduced into a single value with the reduce function.

    It is equivalent to groupBy(key).mapValues(_.map(f).reduce(reduce)), but more efficient.

    def occurrences[A](as: Seq[A]): Map[A, Int] =
      as.groupMapReduce(identity)(_ => 1)(_ + _)
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  33. def grouped(size: Int): Iterator[View[(El1, El2, El3)]]

    Partitions elements in fixed size views.

    Partitions elements in fixed size views.

    size

    the number of elements per group

    returns

    An iterator producing views of size size, except the last will be less than size size if the elements don't divide evenly.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method grouped

  34. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  35. def head: (El1, El2, El3)

    Selects the first element of this view.

    Selects the first element of this view.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    returns

    the first element of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    NoSuchElementException if the view is empty.

  36. def headOption: Option[(El1, El2, El3)]

    Optionally selects the first element.

    Optionally selects the first element.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    returns

    the first element of this view if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  37. def init: View[(El1, El2, El3)]

    The initial part of the collection without its last element.

    The initial part of the collection without its last element.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  38. def inits: Iterator[View[(El1, El2, El3)]]

    Iterates over the inits of this view.

    Iterates over the inits of this view. The first value will be this view and the final one will be an empty view, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this view

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)

  39. def isEmpty: Boolean

    Tests whether the view is empty.

    Tests whether the view is empty.

    Note: Implementations in subclasses that are not repeatedly traversable must take care not to consume any elements when isEmpty is called.

    returns

    true if the view contains no elements, false otherwise.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  40. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  41. def iterableFactory: View.type

    returns

    The companion object of this view, providing various factory methods.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    ViewIterableOps
  42. def iterator(): Iterator[(El1, El2, El3)]

    Iterator can be used only once

    Iterator can be used only once

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOnce
  43. def knownSize: Int

    The number of elements in this collection, if it can be cheaply computed, -1 otherwise.

    The number of elements in this collection, if it can be cheaply computed, -1 otherwise. Cheaply usually means: Not requiring a collection traversal.

    returns

    The number of elements of this view if it can be computed in O(1) time, otherwise -1

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOpsIterableOnce
  44. def last: (El1, El2, El3)

    Selects the last element.

    Selects the last element.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    returns

    The last element of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    NoSuchElementException If the view is empty.

  45. def lastOption: Option[(El1, El2, El3)]

    Optionally selects the last element.

    Optionally selects the last element.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    returns

    the last element of this view$ if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  46. def lazyZip[B](that: Iterable[B]): LazyZip4[El1, El2, El3, B, C1]

    Zips that iterable collection with an existing LazyZip3.

    Zips that iterable collection with an existing LazyZip3. The elements in each collection are not consumed until a strict operation is invoked on the returned LazyZip4 decorator.

    B

    the type of the fourth element in each eventual 4-tuple

    that

    the iterable providing the fourth element of each eventual 4-tuple

    returns

    a decorator LazyZip4 that allows strict operations to be performed on the lazily evaluated tuples. Implicit conversion to Iterable[(El1, El2, El3, B)] is also supported.

  47. def map[B, C](f: (El1, El2, El3) ⇒ B)(implicit bf: BuildFrom[C1, B, C]): C
  48. def max: (El1, El2, El3)

    [use case] Finds the largest element.

    [use case]

    Finds the largest element.

    returns

    the largest element of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def max[B >: A](implicit ord: Ordering[B]): (El1, El2, El3)

  49. def maxBy[B](f: ((El1, El2, El3)) ⇒ B): (El1, El2, El3)

    [use case] Finds the first element which yields the largest value measured by function f.

    [use case]

    Finds the first element which yields the largest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this view with the largest value measured by function f.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def maxBy[B](f: ((El1, El2, El3)) ⇒ B)(implicit cmp: Ordering[B]): (El1, El2, El3)

  50. def min: (El1, El2, El3)

    [use case] Finds the smallest element.

    [use case]

    Finds the smallest element.

    returns

    the smallest element of this view

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def min[B >: A](implicit ord: Ordering[B]): (El1, El2, El3)

  51. def minBy[B](f: ((El1, El2, El3)) ⇒ B): (El1, El2, El3)

    [use case] Finds the first element which yields the smallest value measured by function f.

    [use case]

    Finds the first element which yields the smallest value measured by function f.

    B

    The result type of the function f.

    f

    The measuring function.

    returns

    the first element of this view with the smallest value measured by function f.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def minBy[B](f: ((El1, El2, El3)) ⇒ B)(implicit cmp: Ordering[B]): (El1, El2, El3)

  52. def mkString: String

    Displays all elements of this view in a string.

    Displays all elements of this view in a string.

    returns

    a string representation of this view. In the resulting string the string representations (w.r.t. the method toString) of all elements of this view follow each other without any separator string.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  53. def mkString(sep: String): String

    Displays all elements of this view in a string using a separator string.

    Displays all elements of this view in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this view. In the resulting string the string representations (w.r.t. the method toString) of all elements of this view are separated by the string sep.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. List(1, 2, 3).mkString("|") = "1|2|3"

  54. def mkString(start: String, sep: String, end: String): String

    Displays all elements of this view in a string using start, end, and separator strings.

    Displays all elements of this view in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this view. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this view are separated by the string sep.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. List(1, 2, 3).mkString("(", "; ", ")") = "(1; 2; 3)"

  55. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. def nonEmpty: Boolean

    Tests whether the view is not empty.

    Tests whether the view is not empty.

    returns

    true if the view contains at least one element, false otherwise.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  57. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  58. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  59. def partition(p: ((El1, El2, El3)) ⇒ Boolean): (View[(El1, El2, El3)], View[(El1, El2, El3)])

    A pair of, first, all elements that satisfy prediacte p and, second, all elements that do not.

    A pair of, first, all elements that satisfy prediacte p and, second, all elements that do not. Interesting because it splits a collection in two.

    The default implementation provided here needs to traverse the collection twice. Strict collections have an overridden version of partition in Buildable, which requires only a single traversal.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  60. def product: (El1, El2, El3)

    [use case] Multiplies up the elements of this collection.

    [use case]

    Multiplies up the elements of this collection.

    returns

    the product of all elements in this view of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the view and as result type of product. Examples of such types are: Long, Float, Double, BigInt.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def product[B >: A](implicit num: Numeric[B]): B

  61. def reduce[B >: A](op: (B, B) ⇒ B): B

    Reduces the elements of this view using the specified associative binary operator.

    Reduces the elements of this view using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    B

    A type parameter for the binary operator, a supertype of A.

    op

    A binary operator that must be associative.

    returns

    The result of applying reduce operator op between all the elements if the view is nonempty.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  62. def reduceLeft[B >: A](op: (B, (El1, El2, El3)) ⇒ B): B

    Applies a binary operator to all elements of this view, going left to right.

    Applies a binary operator to all elements of this view, going left to right.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this view, going left to right:

    op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)

    where x1, ..., xn are the elements of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  63. def reduceLeftOption[B >: A](op: (B, (El1, El2, El3)) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this view, going left to right.

    Optionally applies a binary operator to all elements of this view, going left to right.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) if this view is nonempty, None otherwise.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  64. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]

    Reduces the elements of this view, if any, using the specified associative binary operator.

    Reduces the elements of this view, if any, using the specified associative binary operator.

    The order in which operations are performed on elements is unspecified and may be nondeterministic.

    B

    A type parameter for the binary operator, a supertype of A.

    op

    A binary operator that must be associative.

    returns

    An option value containing result of applying reduce operator op between all the elements if the collection is nonempty, and None otherwise.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  65. def reduceRight[B >: A](op: ((El1, El2, El3), B) ⇒ B): B

    Applies a binary operator to all elements of this view, going right to left.

    Applies a binary operator to all elements of this view, going right to left.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this view, going right to left:

    op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))

    where x1, ..., xn are the elements of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  66. def reduceRightOption[B >: A](op: ((El1, El2, El3), B) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this view, going right to left.

    Optionally applies a binary operator to all elements of this view, going right to left.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) if this view is nonempty, None otherwise.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  67. def scan[B >: A](z: B)(op: (B, B) ⇒ B): View[B]

    Computes a prefix scan of the elements of the collection.

    Computes a prefix scan of the elements of the collection.

    Note: The neutral element z may be applied more than once.

    B

    element type of the resulting collection

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    returns

    a new view containing the prefix scan of the elements in this view

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  68. def scanLeft[B](z: B)(op: (B, (El1, El2, El3)) ⇒ B): View[B]

    Produces a collection containing cumulative results of applying the operator going left to right.

    Produces a collection containing cumulative results of applying the operator going left to right.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    B

    the type of the elements in the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    returns

    collection with intermediate results

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  69. def scanRight[B](z: B)(op: ((El1, El2, El3), B) ⇒ B): View[B]

    Produces a collection containing cumulative results of applying the operator going right to left.

    Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.

    Note: will not terminate for infinite-sized collections.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    Example:

    List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
    B

    the type of the elements in the resulting collection

    z

    the initial value

    op

    the binary operator applied to the intermediate result and the element

    returns

    collection with intermediate results

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  70. def size: Int

    The size of this view.

    The size of this view.

    Note: will not terminate for infinite-sized collections.

    returns

    the number of elements in this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  71. def slice(from: Int, until: Int): View[(El1, El2, El3)]

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    from

    the lowest index to include from this view.

    until

    the lowest index to EXCLUDE from this view.

    returns

    a view containing the elements greater than or equal to index from extending up to (but not including) index until of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  72. def sliding(size: Int, step: Int): Iterator[View[(El1, El2, El3)]]

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing views of size size, except the last element (which may be the only element) will be truncated if there are fewer than size elements remaining to be grouped.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method sliding

  73. def sliding(size: Int): Iterator[View[(El1, El2, El3)]]

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) The "sliding window" step is set to one.

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) The "sliding window" step is set to one.

    size

    the number of elements per group

    returns

    An iterator producing views of size size, except the last element (which may be the only element) will be truncated if there are fewer than size elements remaining to be grouped.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method sliding

  74. def span(p: ((El1, El2, El3)) ⇒ Boolean): (View[(El1, El2, El3)], View[(El1, El2, El3)])

    Splits this view into a prefix/suffix pair according to a predicate.

    Splits this view into a prefix/suffix pair according to a predicate.

    Note: c span p is equivalent to (but possibly more efficient than) (c takeWhile p, c dropWhile p), provided the evaluation of the predicate p does not cause any side-effects.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    p

    the test predicate

    returns

    a pair consisting of the longest prefix of this view whose elements all satisfy p, and the rest of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  75. def splitAt(n: Int): (View[(El1, El2, El3)], View[(El1, El2, El3)])

    Splits this view into two at a given position.

    Splits this view into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    n

    the position at which to split.

    returns

    a pair of views consisting of the first n elements of this view, and the other elements.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  76. def sum: (El1, El2, El3)

    [use case] Sums up the elements of this collection.

    [use case]

    Sums up the elements of this collection.

    returns

    the sum of all elements in this view of numbers of type Int. Instead of Int, any other type T with an implicit Numeric[T] implementation can be used as element type of the view and as result type of sum. Examples of such types are: Long, Float, Double, BigInt.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Full Signature

    def sum[B >: A](implicit num: Numeric[B]): B

  77. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  78. def tail: View[(El1, El2, El3)]

    The rest of the collection without its first element.

    The rest of the collection without its first element.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  79. def tails: Iterator[View[(El1, El2, El3)]]

    Iterates over the tails of this view.

    Iterates over the tails of this view. The first value will be this view and the final one will be an empty view, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this view

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)

  80. def take(n: Int): View[(El1, El2, El3)]

    A collection containing the first n elements of this collection.

    A collection containing the first n elements of this collection.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  81. def takeRight(n: Int): View[(El1, El2, El3)]

    A collection containing the last n elements of this collection.

    A collection containing the last n elements of this collection.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  82. def takeWhile(p: ((El1, El2, El3)) ⇒ Boolean): View[(El1, El2, El3)]

    Takes longest prefix of elements that satisfy a predicate.

    Takes longest prefix of elements that satisfy a predicate.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    p

    The predicate used to test elements.

    returns

    the longest prefix of this view whose elements all satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  83. def to[C1](factory: Factory[(El1, El2, El3), C1]): C1

    Given a collection factory factory, convert this collection to the appropriate representation for the current element type A.

    Given a collection factory factory, convert this collection to the appropriate representation for the current element type A. Example uses:

    xs.to(List) xs.to(ArrayBuffer) xs.to(BitSet) // for xs: Iterable[Int]

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  84. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]

    Convert collection to array.

    Convert collection to array.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  85. def toIndexedSeq: immutable.IndexedSeq[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  86. final def toIterable: View[(El1, El2, El3)]

    returns

    This collection as an Iterable[A]. No new collection will be built if this is already an Iterable[A].

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableIterableOps
  87. def toList: List[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  88. def toMap[K, V](implicit ev: <:<[(El1, El2, El3), (K, V)]): immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  89. def toSeq: immutable.Seq[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  90. def toSet[B >: A]: immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  91. def toString(): String
    Definition Classes
    LazyZip3 → AnyRef → Any
  92. def toVector: Vector[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  93. def transpose[B](implicit asIterable: ((El1, El2, El3)) ⇒ Iterable[B]): View[View[B]]

    Transposes this view of iterable collections into a view of views.

    Transposes this view of iterable collections into a view of views.

    The resulting collection's type will be guided by the static type of view. For example:

    val xs = List(
               Set(1, 2, 3),
               Set(4, 5, 6)).transpose
    // xs == List(
    //         List(1, 4),
    //         List(2, 5),
    //         List(3, 6))
    
    val ys = Vector(
               List(1, 2, 3),
               List(4, 5, 6)).transpose
    // ys == Vector(
    //         Vector(1, 4),
    //         Vector(2, 5),
    //         Vector(3, 6))
    B

    the type of the elements of each iterable collection.

    asIterable

    an implicit conversion which asserts that the element type of this view is an Iterable.

    returns

    a two-dimensional view of views which has as nth row the nth column of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Exceptions thrown

    IllegalArgumentException if all collections in this view are not of the same size.

  94. def unzip[A1, A2](implicit asPair: ((El1, El2, El3)) ⇒ (A1, A2)): (View[A1], View[A2])

    Converts this view of pairs into two collections of the first and second half of each pair.

    Converts this view of pairs into two collections of the first and second half of each pair.

    val xs = `View`(
               (1, "one"),
               (2, "two"),
               (3, "three")).unzip
    // xs == (`View`(1, 2, 3),
    //        `View`(one, two, three))
    A1

    the type of the first half of the element pairs

    A2

    the type of the second half of the element pairs

    asPair

    an implicit conversion which asserts that the element type of this view is a pair.

    returns

    a pair of views, containing the first, respectively second half of each element pair of this view.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  95. def view: View[(El1, El2, El3)]

    A view over the elements of this collection.

    A view over the elements of this collection.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    ViewIterableOps
  96. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  97. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  98. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  99. def withFilter(p: ((El1, El2, El3)) ⇒ Boolean): WithFilter[(El1, El2, El3), View]

    Creates a non-strict filter of this view.

    Creates a non-strict filter of this view.

    Note: the difference between c filter p and c withFilter p is that the former creates a new collection, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    Note: might return different results for different runs, unless the underlying collection type is ordered.

    p

    the predicate used to test elements.

    returns

    an object of class WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this view which satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  100. def zip[B](that: Iterable[B]): View[((El1, El2, El3), B)]

    Returns a view formed from this view and another iterable collection by combining corresponding elements in pairs.

    Returns a view formed from this view and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

    a new view containing pairs consisting of corresponding elements of this view and that. The length of the returned collection is the minimum of the lengths of this view and that.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  101. def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): View[(A1, B)]

    Returns a view formed from this view and another iterable collection by combining corresponding elements in pairs.

    Returns a view formed from this view and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    that

    the iterable providing the second half of each result pair

    thisElem

    the element to be used to fill up the result if this view is shorter than that.

    thatElem

    the element to be used to fill up the result if that is shorter than this view.

    returns

    a new collection of type That containing pairs consisting of corresponding elements of this view and that. The length of the returned collection is the maximum of the lengths of this view and that. If this view is shorter than that, thisElem values are used to pad the result. If that is shorter than this view, thatElem values are used to pad the result.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
  102. def zipWithIndex: View[((El1, El2, El3), Int)]

    Zips this view with its indices.

    Zips this view with its indices.

    returns

    A new view containing pairs consisting of all elements of this view paired with their index. Indices start at 0.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Example:
    1. List("a", "b", "c").zipWithIndex == List(("a", 0), ("b", 1), ("c", 2))

Shadowed Implicit Value Members

  1. def exists(p: ((El1, El2, El3)) ⇒ Boolean): Boolean

    Tests whether a predicate holds for at least one element of this view.

    Tests whether a predicate holds for at least one element of this view.

    Note: may not terminate for infinite-sized collections.

    p

    the predicate used to test elements.

    returns

    true if the given predicate p is satisfied by at least one element of this view, otherwise false

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).exists(p)
    Definition Classes
    IterableOps
  2. def filter(pred: ((El1, El2, El3)) ⇒ Boolean): View[(El1, El2, El3)]

    Selects all elements of this view which satisfy a predicate.

    Selects all elements of this view which satisfy a predicate.

    pred

    the predicate used to test elements.

    returns

    a new view consisting of all elements of this view that satisfy the given predicate pred. Their order may not be preserved.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).filter(pred)
    Definition Classes
    IterableOps
  3. def flatMap[B](f: ((El1, El2, El3)) ⇒ IterableOnce[B]): View[B]

    Builds a new collection by applying a function to all elements of this view and using the elements of the resulting collections.

    Builds a new collection by applying a function to all elements of this view and using the elements of the resulting collections.

    For example:

    def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")

    The type of the resulting collection is guided by the static type of view. This might cause unexpected results sometimes. For example:

    // lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
    def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
    
    // lettersOf will return a Set[Char], not a Seq
    def lettersOf(words: Seq[String]) = words.toSet flatMap (word => word.toSeq)
    
    // xs will be an Iterable[Int]
    val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
    
    // ys will be a Map[Int, Int]
    val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new view resulting from applying the given collection-valued function f to each element of this view and concatenating the results.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).flatMap(f)
    Definition Classes
    IterableOps
  4. def forall(p: ((El1, El2, El3)) ⇒ Boolean): Boolean

    Tests whether a predicate holds for all elements of this view.

    Tests whether a predicate holds for all elements of this view.

    Note: may not terminate for infinite-sized collections.

    p

    the predicate used to test elements.

    returns

    true if this view is empty or the given predicate p holds for all elements of this view, otherwise false.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).forall(p)
    Definition Classes
    IterableOps
  5. def foreach[U](f: ((El1, El2, El3)) ⇒ U): Unit

    Apply f to each element for its side effects Note: [U] parameter needed to help scalac's type inference.

    Apply f to each element for its side effects Note: [U] parameter needed to help scalac's type inference.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).foreach(f)
    Definition Classes
    IterableOps
  6. def map[B](f: ((El1, El2, El3)) ⇒ B): View[B]

    Builds a new collection by applying a function to all elements of this view.

    Builds a new collection by applying a function to all elements of this view.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new view resulting from applying the given function f to each element of this view and collecting the results.

    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).map(f)
    Definition Classes
    IterableOps
  7. def toString(): String
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (lazyZip3: View[(El1, El2, El3)]).toString()
    Definition Classes
    ViewIterableOps → AnyRef → Any

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, (El1, El2, El3)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  2. final def :\[B](z: B)(op: ((El1, El2, El3), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  3. def force: IndexedSeq[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    View
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Views no longer know about their underlying collection type; .force always returns an IndexedSeq

  4. final def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  5. final def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use className instead of stringPrefix

  6. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  7. final def toIterator: Iterator[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator() instead of .toIterator

  8. final def toStream: LazyList[(El1, El2, El3)]
    Implicit
    This member is added by an implicit conversion from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)] performed by method lazyZip3ToIterable in strawman.collection.LazyZip3.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use LazyList.from(it) instead of it.toStream

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion lazyZip3ToIterable from LazyZip3[El1, El2, El3, C1] to View[(El1, El2, El3)]

Ungrouped