c

akka.parboiled2

ValueStack

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.

Source
ValueStack.scala
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
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by flattenTraversableOnce
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  8. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[Any]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ValueStack to any2stringadd[ValueStack] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: Any, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: Any, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: Any, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (ValueStack, B)
    Implicit
    This member is added by an implicit conversion from ValueStack to ArrowAssoc[ValueStack] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, Any) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  15. def clear(): Unit

    Removes all elements from the stack.

  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  17. def collect[B, That](pf: PartialFunction[Any, B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collectFirst[B](pf: PartialFunction[Any, B]): Option[B]
    Definition Classes
    TraversableOnce
  19. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  20. def copyToArray[B >: Any](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Any](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: Any](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToBuffer[B >: Any](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  24. def count(p: (Any) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): Iterable[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  26. def dropRight(n: Int): Iterable[Any]
    Definition Classes
    IterableLike
  27. def dropWhile(p: (Any) ⇒ Boolean): Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  28. def ensuring(cond: (ValueStack) ⇒ Boolean, msg: ⇒ Any): ValueStack
    Implicit
    This member is added by an implicit conversion from ValueStack to Ensuring[ValueStack] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: (ValueStack) ⇒ Boolean): ValueStack
    Implicit
    This member is added by an implicit conversion from ValueStack to Ensuring[ValueStack] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean, msg: ⇒ Any): ValueStack
    Implicit
    This member is added by an implicit conversion from ValueStack to Ensuring[ValueStack] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean): ValueStack
    Implicit
    This member is added by an implicit conversion from ValueStack to Ensuring[ValueStack] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  34. def exists(p: (Any) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. def filter(p: (Any) ⇒ Boolean): Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  36. def filterNot(p: (Any) ⇒ Boolean): Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  37. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def find(p: (Any) ⇒ Boolean): Option[Any]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. def flatMap[B, That](f: (Any) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  40. def flatten[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  41. def fold[A1 >: Any](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def foldLeft[B](z: B)(op: (B, Any) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def foldRight[B](z: B)(op: (Any, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  44. def forall(p: (Any) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  45. def foreach[U](f: (Any) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  46. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ValueStack to StringFormat[ValueStack] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  47. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  48. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  49. def groupBy[K](f: (Any) ⇒ K): Map[K, Iterable[Any]]
    Definition Classes
    TraversableLike → GenTraversableLike
  50. def grouped(size: Int): Iterator[Iterable[Any]]
    Definition Classes
    IterableLike
  51. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  52. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  53. def head: Any
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  54. def headOption: Option[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def init: Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def inits: Iterator[Iterable[Any]]
    Definition Classes
    TraversableLike
  57. def insert(down: Int, value: Any): Unit

    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.

  58. def isEmpty: Boolean

    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
  59. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  60. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  61. def iterator: Iterator[Any]

    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
  62. def last: Any
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def lastOption: Option[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def map[B, That](f: (Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  65. def max[B >: Any](implicit cmp: Ordering[B]): Any
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def maxBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def min[B >: Any](implicit cmp: Ordering[B]): Any
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. def minBy[B](f: (Any) ⇒ B)(implicit cmp: Ordering[B]): Any
    Definition Classes
    TraversableOnce → GenTraversableOnce
  69. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  73. def newBuilder: Builder[Any, Iterable[Any]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  74. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  76. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  77. def par: ParIterable[Any]
    Definition Classes
    Parallelizable
  78. def parCombiner: Combiner[Any, ParIterable[Any]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  79. def partition(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  80. def peek(down: Int): Any

    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.

  81. def peek: Any

    Returns the top element without removing it.

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

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

    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.

  83. def pop(): Any

    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.

  84. def product[B >: Any](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def pullOut(down: Int): Any

    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.

  86. def push(value: Any): Unit

    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.

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

    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()
  88. def reduce[A1 >: Any](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceLeft[B >: Any](op: (B, Any) ⇒ B): B
    Definition Classes
    TraversableOnce
  90. def reduceLeftOption[B >: Any](op: (B, Any) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduceOption[A1 >: Any](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceRight[B >: Any](op: (Any, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  93. def reduceRightOption[B >: Any](op: (Any, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def repr: Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def reversed: List[Any]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  96. def sameElements[B >: Any](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  97. def scan[B >: Any, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def scanLeft[B, That](z: B)(op: (B, Any) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanRight[B, That](z: B)(op: (Any, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Any], B, That]): That
    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.

  100. def seq: Iterable[Any]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  101. def show: String

    Creates a string representation of the current value stack contents.

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

  102. def size: Int

    The number of elements currently on the stack.

    The number of elements currently on the stack.

    Definition Classes
    ValueStack → GenTraversableLike → TraversableOnce → GenTraversableOnce
  103. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    GenTraversableOnce
  104. def slice(from: Int, until: Int): Iterable[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  105. def sliding(size: Int, step: Int): Iterator[Iterable[Any]]
    Definition Classes
    IterableLike
  106. def sliding(size: Int): Iterator[Iterable[Any]]
    Definition Classes
    IterableLike
  107. def span(p: (Any) ⇒ Boolean): (Iterable[Any], Iterable[Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  108. def splitAt(n: Int): (Iterable[Any], Iterable[Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  109. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def sum[B >: Any](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def swap(): Unit

    Swaps the top 2 stack elements.

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

  112. def swap3(): Unit

    Swaps the top 3 stack elements.

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

  113. def swap4(): Unit

    Swaps the top 4 stack elements.

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

  114. def swap5(): Unit

    Swaps the top 5 stack elements.

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

  115. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  116. def tail: Iterable[Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def tails: Iterator[Iterable[Any]]
    Definition Classes
    TraversableLike
  118. def take(n: Int): Iterable[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  119. def takeRight(n: Int): Iterable[Any]
    Definition Classes
    IterableLike
  120. def takeWhile(p: (Any) ⇒ Boolean): Iterable[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  121. def thisCollection: Iterable[Any]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  122. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Any, Col[Any]]): Col[Any]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  123. def toArray: Array[Any]

    Returns all current stack elements as a new array.

  124. def toArray[B >: Any](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toBuffer[B >: Any]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toCollection(repr: Iterable[Any]): Iterable[Any]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  127. final def toHList[L <: HList](start: Int = 0, end: Int = _size, prependTo: HList = HNil): L

    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()
  128. def toIndexedSeq: IndexedSeq[Any]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toIterable: Iterable[Any]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  130. def toIterator: Iterator[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  131. def toList: List[Any]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toMap[T, U](implicit ev: <:<[Any, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from ValueStack to CollectionsHaveToParArray[ValueStack, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (ValueStack) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  134. def toSeq: Seq[Any]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def toSet[B >: Any]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def toStream: Stream[Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  137. def toString(): String
    Definition Classes
    TraversableLike → Any
  138. def toTraversable: Traversable[Any]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  139. def toVector: Vector[Any]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. def transpose[B](implicit asTraversable: (Any) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  141. def unzip[A1, A2](implicit asPair: (Any) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  142. def unzip3[A1, A2, A3](implicit asTriple: (Any) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  143. def view(from: Int, until: Int): IterableView[Any, Iterable[Any]]
    Definition Classes
    IterableLike → TraversableLike
  144. def view: IterableView[Any, Iterable[Any]]
    Definition Classes
    IterableLike → TraversableLike
  145. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  146. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  147. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  148. def withFilter(p: (Any) ⇒ Boolean): FilterMonadic[Any, Iterable[Any]]
    Definition Classes
    TraversableLike → FilterMonadic
  149. def zip[A1 >: Any, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  150. def zipAll[B, A1 >: Any, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Any], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  151. def zipWithIndex[A1 >: Any, That](implicit bf: CanBuildFrom[Iterable[Any], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  152. def [B](y: B): (ValueStack, B)
    Implicit
    This member is added by an implicit conversion from ValueStack to ArrowAssoc[ValueStack] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (Any) ⇒ Boolean): TraversableOnce[Any]
    Implicit
    This member is added by an implicit conversion from ValueStack to MonadOps[Any] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (valueStack: MonadOps[Any]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (Any) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ValueStack to MonadOps[Any] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (valueStack: MonadOps[Any]).flatMap(f)
    Definition Classes
    MonadOps
  3. def flatten: Iterator[A]
    Implicit
    This member is added by an implicit conversion from ValueStack to FlattenOps[A] performed by method flattenTraversableOnce in scala.collection.TraversableOnce. This conversion will take place only if an implicit value of type (Any) ⇒ TraversableOnce[A] is in scope.
    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:
    (valueStack: FlattenOps[A]).flatten
    Definition Classes
    FlattenOps
  4. def map[B](f: (Any) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ValueStack to MonadOps[Any] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (valueStack: MonadOps[Any]).map(f)
    Definition Classes
    MonadOps
  5. def withFilter(p: (Any) ⇒ Boolean): Iterator[Any]
    Implicit
    This member is added by an implicit conversion from ValueStack to MonadOps[Any] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (valueStack: MonadOps[Any]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Any) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (Any, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

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 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

Inherited by implicit conversion CollectionsHaveToParArray from ValueStack to CollectionsHaveToParArray[ValueStack, T]

Inherited by implicit conversion MonadOps from ValueStack to MonadOps[Any]

Inherited by implicit conversion flattenTraversableOnce from ValueStack to FlattenOps[A]

Inherited by implicit conversion any2stringadd from ValueStack to any2stringadd[ValueStack]

Inherited by implicit conversion StringFormat from ValueStack to StringFormat[ValueStack]

Inherited by implicit conversion Ensuring from ValueStack to Ensuring[ValueStack]

Inherited by implicit conversion ArrowAssoc from ValueStack to ArrowAssoc[ValueStack]

Inherited by implicit conversion alternateImplicit from ValueStack to ForceImplicitAmbiguity

Ungrouped