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

Decorator representing lazily zipped 4-tuples.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyZip4
  2. AnyRef
  3. Any
Implicitly
  1. by lazyZip4ToIterable
  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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    ViewIterableOps
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[B](pf: PartialFunction[(El1, El2, El3, El4), B]): View[B]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  9. def collectFirst[B](pf: PartialFunction[(El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  12. def count(p: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  13. def drop(n: Int): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  14. def dropRight(n: Int): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  15. def dropWhile(p: ((El1, El2, El3, El4)) ⇒ Boolean): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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, El4) ⇒ Boolean): Boolean
  19. def filter[C](p: (El1, El2, El3, El4) ⇒ Boolean)(implicit bf: BuildFrom[C1, (El1, El2, El3, El4), C]): C
  20. def filterNot(pred: ((El1, El2, El3, El4)) ⇒ Boolean): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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, El4)) ⇒ Boolean): Option[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  23. def flatMap[B, C](f: (El1, El2, El3, El4) ⇒ Iterable[B])(implicit bf: BuildFrom[C1, B, C]): C
  24. def flatten[B](implicit ev: ((El1, El2, El3, El4)) ⇒ IterableOnce[B]): View[B]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  25. def foldLeft[B](z: B)(op: (B, (El1, El2, El3, El4)) ⇒ B): B

    Fold left

    Fold left

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

    Fold right

    Fold right

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  31. def groupMap[K, B](key: ((El1, El2, El3, El4)) ⇒ K)(f: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  32. def groupMapReduce[K, B](key: ((El1, El2, El3, El4)) ⇒ K)(f: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  33. def grouped(size: Int): Iterator[View[(El1, El2, El3, El4)]]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method grouped

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

    NoSuchElementException if the view is empty.

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  37. def init: View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  38. def isEmpty: Boolean

    Is the collection empty?

    Is the collection empty?

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

    Iterator can be used only once

    Iterator can be used only once

    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOnce
  42. 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOpsIterableOnce
  43. def last: (El1, El2, El3, El4)

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

    NoSuchElementException If the view is empty.

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  45. def map[B, C](f: (El1, El2, El3, El4) ⇒ B)(implicit bf: BuildFrom[C1, B, C]): C
  46. def max: (El1, El2, El3, El4)

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

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

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

  48. def min: (El1, El2, El3, El4)

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

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

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

  50. def mkString: String
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  51. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  52. def mkString(start: String, sep: String, end: String): String

    A string showing all elements of this collection, separated by string sep.

    A string showing all elements of this collection, separated by string sep.

    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  53. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  54. def nonEmpty: Boolean

    Is the collection not empty?

    Is the collection not empty?

    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  55. final def notify(): Unit
    Definition Classes
    AnyRef
  56. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  57. def partition(p: ((El1, El2, El3, El4)) ⇒ Boolean): (View[(El1, El2, El3, El4)], View[(El1, El2, El3, El4)])

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  58. def product: (El1, El2, El3, El4)

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

  59. 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  60. def reduceLeft[B >: A](op: (B, (El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  61. def reduceLeftOption[B >: A](op: (B, (El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  62. 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  63. def reduceRight[B >: A](op: ((El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

    UnsupportedOperationException if this view is empty.

  64. def reduceRightOption[B >: A](op: ((El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  65. 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  66. def scanLeft[B](z: B)(op: (B, (El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  67. def scanRight[B](z: B)(op: ((El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  68. def size: Int

    The number of elements in this collection.

    The number of elements in this collection. Does not terminate for infinite collections.

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  70. def sliding(size: Int, step: Int): Iterator[View[(El1, El2, El3, El4)]]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method sliding

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    See also

    scala.collection.Iterator, method sliding

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  73. def splitAt(n: Int): (View[(El1, El2, El3, El4)], View[(El1, El2, El3, El4)])

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  74. def sum: (El1, El2, El3, El4)

    [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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Full Signature

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

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

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  77. def take(n: Int): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  78. def takeRight(n: Int): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  79. def takeWhile(p: ((El1, El2, El3, El4)) ⇒ Boolean): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  80. def to[C1](factory: Factory[(El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  81. 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  82. def toIndexedSeq: immutable.IndexedSeq[(El1, El2, El3, El4)]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  83. final def toIterable: View[(El1, El2, El3, El4)]

    The collection itself

    The collection itself

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableIterableOps
  84. def toList: List[(El1, El2, El3, El4)]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  85. def toMap[K, V](implicit ev: <:<[(El1, El2, El3, El4), (K, V)]): immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  86. def toSeq: immutable.Seq[(El1, El2, El3, El4)]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  87. def toSet[B >: A]: immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  88. def toString(): String
    Definition Classes
    LazyZip4 → AnyRef → Any
  89. def toVector: Vector[(El1, El2, El3, El4)]
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  90. def transpose[B](implicit asIterable: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Exceptions thrown

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

  91. def unzip[A1, A2](implicit asPair: <:<[(El1, El2, El3, El4), (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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  92. def view: View[(El1, El2, El3, El4)]

    A view representing the elements of this collection.

    A view representing the elements of this collection.

    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    ViewIterableOps
  93. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  94. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  95. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. def withFilter(p: ((El1, El2, El3, El4)) ⇒ Boolean): WithFilter[(El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  97. def zip[B](that: Iterable[B]): View[((El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
  98. def zipWithIndex: View[((El1, El2, El3, El4), 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).exists(p)
    Definition Classes
    IterableOps
  2. def filter(pred: ((El1, El2, El3, El4)) ⇒ Boolean): View[(El1, El2, El3, El4)]

    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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).filter(pred)
    Definition Classes
    IterableOps
  3. def flatMap[B](f: ((El1, El2, El3, El4)) ⇒ IterableOnce[B]): View[B]

    Flatmap

    Flatmap

    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).flatMap(f)
    Definition Classes
    IterableOps
  4. def forall(p: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).forall(p)
    Definition Classes
    IterableOps
  5. def foreach[U](f: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).foreach(f)
    Definition Classes
    IterableOps
  6. def map[B](f: ((El1, El2, El3, El4)) ⇒ 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 LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).map(f)
    Definition Classes
    IterableOps
  7. def toString(): String
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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:
    (lazyZip4: View[(El1, El2, El3, El4)]).toString()
    Definition Classes
    ViewIterableOps → AnyRef → Any

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, (El1, El2, El3, El4)) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    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, El4), B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)] performed by method lazyZip4ToIterable in strawman.collection.LazyZip4.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

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

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

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

    (Since version 2.13.0) Use className instead of stringPrefix

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion lazyZip4ToIterable from LazyZip4[El1, El2, El3, El4, C1] to View[(El1, El2, El3, El4)]

Ungrouped