Class

org.parboiled2

ValueStack

Related Doc: package parboiled2

Permalink

class ValueStack extends Iterable[Any]

A mutable untyped stack of values. In most cases you won't have to access its API directly since parboiled2's DSL should allow you a safer and easier way to interact with the stack. However, in some cases, when you know what you are doing, direct access can be helpful.

Linear Supertypes
Iterable[Any], IterableLike[Any, Iterable[Any]], Equals, GenIterable[Any], GenIterableLike[Any, Iterable[Any]], Traversable[Any], GenTraversable[Any], GenericTraversableTemplate[Any, Iterable], TraversableLike[Any, Iterable[Any]], GenTraversableLike[Any, Iterable[Any]], Parallelizable[Any, ParIterable[Any]], TraversableOnce[Any], GenTraversableOnce[Any], FilterMonadic[Any, Iterable[Any]], HasNewBuilder[Any, Iterable[Any] @scala.annotation.unchecked.uncheckedVariance], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueStack
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. AnyRef
  18. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[B >: Any, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: Any, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  5. def ++:[B >: Any, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def /:[B](z: B)(op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (Any, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, Any) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  15. def clear(): Unit

    Permalink

    Removes all elements from the stack.

  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def collect[B, That](pf: PartialFunction[Any, B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collectFirst[B](pf: PartialFunction[Any, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  19. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  20. def copyToArray[B >: Any](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Any](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: Any](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToBuffer[B >: Any](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  24. def count(p: (Any) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  26. def dropRight(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike
  27. def dropWhile(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  28. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  30. def exists(p: (Any) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  31. def filter(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  32. def filterNot(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  33. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  34. def find(p: (Any) ⇒ Boolean): Option[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. def flatMap[B, That](f: (Any) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  36. def flatten[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  37. def fold[A1 >: Any](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def foldLeft[B](z: B)(op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def foldRight[B](z: B)(op: (Any, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  40. def forall(p: (Any) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  41. def foreach[U](f: (Any) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  42. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  43. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  44. def groupBy[K](f: (Any) ⇒ K): Map[K, Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  45. def grouped(size: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  46. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  47. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  48. def head: Any

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  49. def headOption: Option[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  50. def init: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def inits: Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike
  52. def insert(down: Int, value: Any): Unit

    Permalink

    Inserts the given value into the stack down elements below the current top element.

    Inserts the given value into the stack down elements below the current top element. insert(0, 'x') is therefore equal to push('x'). Throws a ValueStackOverflowException if the stack has no more space available. Throws a ValueStackUnderflowException if down > size. Throws an IllegalArgumentException is down is negative.

  53. def isEmpty: Boolean

    Permalink

    True if no elements are currently on the stack.

    True if no elements are currently on the stack.

    Definition Classes
    ValueStack → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  54. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  55. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  56. def iterator: Iterator[Any]

    Permalink

    Returns an iterator that iterates over a *snapshot* of the stack elements at the time of this method call.

    Returns an iterator that iterates over a *snapshot* of the stack elements at the time of this method call. I.e. subsequent mutations are not visible to the iterator.

    Definition Classes
    ValueStack → IterableLike → GenIterableLike
  57. def last: Any

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def lastOption: Option[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def map[B, That](f: (Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  60. def max[B >: Any](implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def maxBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def min[B >: Any](implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def minBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  68. def newBuilder: Builder[Any, Iterable[Any]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  69. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  71. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  72. def par: ParIterable[Any]

    Permalink
    Definition Classes
    Parallelizable
  73. def parCombiner: Combiner[Any, ParIterable[Any]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  74. def partition(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  75. def peek(down: Int): Any

    Permalink

    Returns the element down elements below the current top element without removing it.

    Returns the element down elements below the current top element without removing it. peek(0) is therefore equal to peek(). Throws a ValueStackUnderflowException if down >= size. Throws an IllegalArgumentException is down is negative.

  76. def peek: Any

    Permalink

    Returns the top element without removing it.

    Returns the top element without removing it. Throws a ValueStackUnderflowException if the stack is empty.

  77. def poke(down: Int, value: Any): Unit

    Permalink

    Replaces the element down elements below the current top element with the given one.

    Replaces the element down elements below the current top element with the given one. Throws a ValueStackUnderflowException if down >= size. Throws an IllegalArgumentException if down is negative.

  78. def pop(): Any

    Permalink

    Removes the top element from the stack and returns it.

    Removes the top element from the stack and returns it. Throws a ValueStackUnderflowException if the stack is empty.

  79. def product[B >: Any](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def pullOut(down: Int): Any

    Permalink

    Removes the element down elements below the current top element from the stack and returns it.

    Removes the element down elements below the current top element from the stack and returns it. pullOut(0) is therefore equal to pop(). Throws a ValueStackUnderflowException if down >= size. Throws an IllegalArgumentException is down is negative.

  81. def push(value: Any): Unit

    Permalink

    Puts the given value onto the stack.

    Puts the given value onto the stack. Throws a ValueStackOverflowException if the stack has no more space available.

  82. final def pushAll(hlist: HList): Unit

    Permalink

    Puts the given HList of values onto the stack.

    Puts the given HList of values onto the stack. Throws a ValueStackOverflowException if the stack has no more space available.

    Annotations
    @tailrec()
  83. def reduce[A1 >: Any](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  84. def reduceLeft[B >: Any](op: (B, Any) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  85. def reduceLeftOption[B >: Any](op: (B, Any) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduceOption[A1 >: Any](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def reduceRight[B >: Any](op: (Any, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  88. def reduceRightOption[B >: Any](op: (Any, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def repr: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def reversed: List[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  91. def sameElements[B >: Any](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  92. def scan[B >: Any, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def scanLeft[B, That](z: B)(op: (B, Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def scanRight[B, That](z: B)(op: (Any, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  95. def seq: Iterable[Any]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  96. def show: String

    Permalink

    Creates a string representation of the current value stack contents.

    Creates a string representation of the current value stack contents. Mostly useful for debugging.

  97. def size: Int

    Permalink

    The number of elements currently on the stack.

    The number of elements currently on the stack.

    Definition Classes
    ValueStack → GenTraversableLike → TraversableOnce → GenTraversableOnce
  98. def slice(from: Int, until: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  99. def sliding(size: Int, step: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  100. def sliding(size: Int): Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike
  101. def span(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  102. def splitAt(n: Int): (Iterable[Any], Iterable[Any])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def sum[B >: Any](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def swap(): Unit

    Permalink

    Swaps the top 2 stack elements.

    Swaps the top 2 stack elements. Throws a ValueStackUnderflowException if size < 2.

  106. def swap3(): Unit

    Permalink

    Swaps the top 3 stack elements.

    Swaps the top 3 stack elements. Throws a ValueStackUnderflowException if size < 3.

  107. def swap4(): Unit

    Permalink

    Swaps the top 4 stack elements.

    Swaps the top 4 stack elements. Throws a ValueStackUnderflowException if size < 4.

  108. def swap5(): Unit

    Permalink

    Swaps the top 5 stack elements.

    Swaps the top 5 stack elements. Throws a ValueStackUnderflowException if size < 5.

  109. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  110. def tail: Iterable[Any]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def tails: Iterator[Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike
  112. def take(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  113. def takeRight(n: Int): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike
  114. def takeWhile(p: (Any) ⇒ Boolean): Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  115. def thisCollection: Iterable[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  116. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Any, Col[Any]]): Col[Any]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  117. def toArray: Array[Any]

    Permalink

    Returns all current stack elements as a new array.

  118. def toArray[B >: Any](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toBuffer[B >: Any]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toCollection(repr: Iterable[Any]): Iterable[Any]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  121. final def toHList[L <: HList](start: Int = 0, end: Int = _size, prependTo: HList = HNil): L

    Permalink

    Copies all elements between the given start (inclusive) and end (exclusive) indices into an HList that is prepended to the given tail.

    Copies all elements between the given start (inclusive) and end (exclusive) indices into an HList that is prepended to the given tail. Throws an IllegalArgumentException if start < 0 || start > end. Throws a ValueStackUnderflowException if end > size.

    Annotations
    @tailrec()
  122. def toIndexedSeq: IndexedSeq[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toIterable: Iterable[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  124. def toIterator: Iterator[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  125. def toList: List[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toMap[T, U](implicit ev: <:<[Any, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toSeq: Seq[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toSet[B >: Any]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toStream: Stream[Any]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  130. def toString(): String

    Permalink
    Definition Classes
    TraversableLike → Any
  131. def toTraversable: Traversable[Any]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  132. def toVector: Vector[Any]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def transpose[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  134. def unzip[A1, A2](implicit asPair: (Any) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  135. def unzip3[A1, A2, A3](implicit asTriple: (Any) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  136. def view(from: Int, until: Int): IterableView[Any, Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  137. def view: IterableView[Any, Iterable[Any]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  138. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  139. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  140. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  141. def withFilter(p: (Any) ⇒ Boolean): FilterMonadic[Any, Iterable[Any]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  142. def zip[A1 >: Any, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  143. def zipAll[B, A1 >: Any, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  144. def zipWithIndex[A1 >: Any, That](implicit bf: CanBuildFrom[Iterable[Any], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Iterable[Any]

Inherited from IterableLike[Any, Iterable[Any]]

Inherited from Equals

Inherited from GenIterable[Any]

Inherited from GenIterableLike[Any, Iterable[Any]]

Inherited from Traversable[Any]

Inherited from GenTraversable[Any]

Inherited from GenericTraversableTemplate[Any, Iterable]

Inherited from TraversableLike[Any, Iterable[Any]]

Inherited from GenTraversableLike[Any, Iterable[Any]]

Inherited from Parallelizable[Any, ParIterable[Any]]

Inherited from TraversableOnce[Any]

Inherited from GenTraversableOnce[Any]

Inherited from FilterMonadic[Any, Iterable[Any]]

Inherited from HasNewBuilder[Any, Iterable[Any] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Ungrouped