A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.scala-lang.org/api/2.13.10/scala/collection/mutable/Stack.html below:

Scala Standard Library 2.13.10 - scala.collection.mutable.Stack

class Stack[A] extends ArrayDeque[A] with IndexedSeqOps[A, Stack, Stack[A]] with StrictOptimizedSeqOps[A, Stack, Stack[A]] with IterableFactoryDefaults[A, Stack] with ArrayDequeOps[A, Stack, Stack[A]] with Cloneable[Stack[A]] with DefaultSerializable



Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Stack
  2. ArrayDeque
  3. DefaultSerializable
  4. Serializable
  5. ArrayDequeOps
  6. StrictOptimizedSeqOps
  7. StrictOptimizedIterableOps
  8. IndexedBuffer
  9. IndexedSeq
  10. IndexedSeqOps
  11. IndexedSeq
  12. IndexedSeqOps
  13. AbstractBuffer
  14. Buffer
  15. Shrinkable
  16. Growable
  17. Clearable
  18. AbstractSeq
  19. Seq
  20. SeqOps
  21. Cloneable
  22. Cloneable
  23. Iterable
  24. AbstractSeq
  25. Seq
  26. Equals
  27. SeqOps
  28. PartialFunction
  29. Function1
  30. AbstractIterable
  31. Iterable
  32. IterableFactoryDefaults
  33. IterableOps
  34. IterableOnceOps
  35. IterableOnce
  36. AnyRef
  37. Any
Implicitly
  1. by UnliftOps
  2. by iterableOnceExtensionMethods
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
Visibility
  1. Public
  2. Protected
Value Members
  1.  final def !=(arg0: Any): Boolean
  2.  final def ##: Int
  3.  def +(other: String): String
  4.  final def ++[B >: A](suffix: IterableOnce[B]): Stack[B]
  5.  final def ++:[B >: A](prefix: IterableOnce[B]): Stack[B]
  6.  final def ++=(xs: IterableOnce[A]): Stack.this.type
  7.  final def ++=:(elems: IterableOnce[A]): Stack.this.type
  8.  final def +:[B >: A](elem: B): Stack[B]
  9.  final def +=(elem: A): Stack.this.type
  10.  final def +=:(elem: A): Stack.this.type
  11.  final def --=(xs: IterableOnce[A]): Stack.this.type
  12.  final def -=(elem: A): Stack.this.type
  13.  def ->[B](y: B): (Stack[A], B)
  14.  final def :+[B >: A](elem: B): Stack[B]
  15.  final def :++[B >: A](suffix: IterableOnce[B]): Stack[B]
  16.  final def ==(arg0: Any): Boolean
  17.  def addAll(elems: IterableOnce[A]): Stack.this.type
  18.  def addOne(elem: A): Stack.this.type
  19.  final def addString(b: StringBuilder): b.type
  20.  final def addString(b: StringBuilder, sep: String): b.type
  21.  def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
  22.  def andThen[C](k: PartialFunction[A, C]): PartialFunction[Int, C]
  23.  def andThen[C](k: (A) => C): PartialFunction[Int, C]
  24.  final def append(elem: A): Stack.this.type
  25.  final def appendAll(xs: IterableOnce[A]): Stack.this.type
  26.  def appended[B >: A](elem: B): Stack[B]
  27.  def appendedAll[B >: A](suffix: IterableOnce[B]): Stack[B]
  28.  def apply(idx: Int): A
  29.  def applyOrElse[A1 <: Int, B1 >: A](x: A1, default: (A1) => B1): B1
  30.  var array: Array[AnyRef]
  31.  final def asInstanceOf[T0]: T0
  32.  def canEqual(that: Any): Boolean
  33.  def className: String
  34.  def clear(): Unit
  35.  def clearAndShrink(size: Int = ArrayDeque.DefaultInitialSize): Stack.this.type
  36.  final def clone(): Stack[A]
  37.  final def coll: Stack.this.type
  38.  def collect[B](pf: PartialFunction[A, B]): Stack[B]
  39.  def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
  40.  def combinations(n: Int): Iterator[Stack[A]]
  41.  def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, A]
  42.  def compose[A](g: (A) => Int): (A) => A
  43.  final def concat[B >: A](suffix: IterableOnce[B]): Stack[B]
  44.  def contains[A1 >: A](elem: A1): Boolean
  45.  def containsSlice[B >: A](that: collection.Seq[B]): Boolean
  46.  def copySliceToArray(srcStart: Int, dest: Array[_], destStart: Int, maxItems: Int): dest.type
  47.  def copyToArray[B >: A](dest: Array[B], destStart: Int, len: Int): Int
  48.  def copyToArray[B >: A](xs: Array[B], start: Int): Int
  49.  def copyToArray[B >: A](xs: Array[B]): Int
  50.  def corresponds[B](that: collection.Seq[B])(p: (A, B) => Boolean): Boolean
  51.  def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
  52.  def count(p: (A) => Boolean): Int
  53.  def diff[B >: A](that: collection.Seq[B]): Stack[A]
  54.  def distinct: Stack[A]
  55.  def distinctBy[B](f: (A) => B): Stack[A]
  56.  def drop(n: Int): Stack[A]
  57.  def dropInPlace(n: Int): Stack.this.type
  58.  def dropRight(n: Int): Stack[A]
  59.  def dropRightInPlace(n: Int): Stack.this.type
  60.  def dropWhile(p: (A) => Boolean): Stack[A]
  61.  def dropWhileInPlace(p: (A) => Boolean): Stack.this.type
  62.  def elementWise: ElementWiseExtractor[Int, A]
  63.  def empty: Stack[A]
  64.  def endsWith[B >: A](that: collection.Iterable[B]): Boolean
  65.  def ensureSize(hint: Int): Unit
  66.  def ensuring(cond: (Stack[A]) => Boolean, msg: => Any): Stack[A]
  67.  def ensuring(cond: (Stack[A]) => Boolean): Stack[A]
  68.  def ensuring(cond: Boolean, msg: => Any): Stack[A]
  69.  def ensuring(cond: Boolean): Stack[A]
  70.  final def eq(arg0: AnyRef): Boolean
  71.  def equals(o: Any): Boolean
  72.  def exists(p: (A) => Boolean): Boolean
  73.  def filter(pred: (A) => Boolean): Stack[A]
  74.  def filterImpl(pred: (A) => Boolean, isFlipped: Boolean): Stack[A]
  75.  def filterInPlace(p: (A) => Boolean): Stack.this.type
  76.  def filterNot(pred: (A) => Boolean): Stack[A]
  77.  def finalize(): Unit
  78.  def find(p: (A) => Boolean): Option[A]
  79.  def findLast(p: (A) => Boolean): Option[A]
  80.  def flatMap[B](f: (A) => IterableOnce[B]): Stack[B]
  81.  def flatMapInPlace(f: (A) => IterableOnce[A]): Stack.this.type
  82.  def flatten[B](implicit toIterableOnce: (A) => IterableOnce[B]): Stack[B]
  83.  def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  84.  def foldLeft[B](z: B)(op: (B, A) => B): B
  85.  def foldRight[B](z: B)(op: (A, B) => B): B
  86.  def forall(p: (A) => Boolean): Boolean
  87.  def foreach[U](f: (A) => U): Unit
  88.  def fromSpecific(coll: IterableOnce[A]): Stack[A]
  89.  final def getClass(): Class[_ <: AnyRef]
  90.  def groupBy[K](f: (A) => K): immutable.Map[K, Stack[A]]
  91.  def groupMap[K, B](key: (A) => K)(f: (A) => B): immutable.Map[K, Stack[B]]
  92.  def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): immutable.Map[K, B]
  93.  def grouped(n: Int): Iterator[Stack[A]]
  94.  def hashCode(): Int
  95.  def head: A
  96.  def headOption: Option[A]
  97.  def indexOf[B >: A](elem: B): Int
  98.  def indexOf[B >: A](elem: B, from: Int): Int
  99.  def indexOfSlice[B >: A](that: collection.Seq[B]): Int
  100.  def indexOfSlice[B >: A](that: collection.Seq[B], from: Int): Int
  101.  def indexWhere(p: (A) => Boolean): Int
  102.  def indexWhere(p: (A) => Boolean, from: Int): Int
  103.  def indices: immutable.Range
  104.  def init: Stack[A]
  105.  def inits: Iterator[Stack[A]]
  106.  def insert(idx: Int, elem: A): Unit
  107.  def insertAll(idx: Int, elems: IterableOnce[A]): Unit
  108.  def intersect[B >: A](that: collection.Seq[B]): Stack[A]
  109.  def isDefinedAt(idx: Int): Boolean
  110.  def isEmpty: Boolean
  111.  final def isInstanceOf[T0]: Boolean
  112.  def isTraversableAgain: Boolean
  113.  def iterableFactory: SeqFactory[Stack]
  114.  def iterator: Iterator[A]
  115.  def klone(): Stack[A]
  116.  def knownSize: Int
  117.  def last: A
  118.  def lastIndexOf[B >: A](elem: B, end: Int = length - 1): Int
  119.  def lastIndexOfSlice[B >: A](that: collection.Seq[B]): Int
  120.  def lastIndexOfSlice[B >: A](that: collection.Seq[B], end: Int): Int
  121.  def lastIndexWhere(p: (A) => Boolean): Int
  122.  def lastIndexWhere(p: (A) => Boolean, end: Int): Int
  123.  def lastOption: Option[A]
  124.  def lazyZip[B](that: collection.Iterable[B]): LazyZip2[A, B, Stack.this.type]
  125.  def length: Int
  126.  final def lengthCompare(that: collection.Iterable[_]): Int
  127.  final def lengthCompare(len: Int): Int
  128.  final def lengthIs: SizeCompareOps
  129.  def lift: (Int) => Option[A]
  130.  def map[B](f: (A) => B): Stack[B]
  131.  def mapInPlace(f: (A) => A): Stack.this.type
  132.  def max[B >: A](implicit ord: math.Ordering[B]): A
  133.  def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  134.  def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
  135.  def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  136.  def min[B >: A](implicit ord: math.Ordering[B]): A
  137.  def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  138.  def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
  139.  def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
  140.  final def mkString: String
  141.  final def mkString(sep: String): String
  142.  final def mkString(start: String, sep: String, end: String): String
  143.  final def ne(arg0: AnyRef): Boolean
  144.  def newSpecificBuilder: Builder[A, Stack[A]]
  145.  def nonEmpty: Boolean
  146.  final def notify(): Unit
  147.  final def notifyAll(): Unit
  148.  def occCounts[B](sq: collection.Seq[B]): Map[B, Int]
  149.  def ofArray(array: Array[AnyRef], end: Int): Stack[A]
  150.  def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
  151.  def padTo[B >: A](len: Int, elem: B): Stack[B]
  152.  def padToInPlace(len: Int, elem: A): Stack.this.type
  153.  def partition(p: (A) => Boolean): (Stack[A], Stack[A])
  154.  def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (Stack[A1], Stack[A2])
  155.  def patch[B >: A](from: Int, other: IterableOnce[B], replaced: Int): Stack[B]
  156.  def patchInPlace(from: Int, patch: IterableOnce[A], replaced: Int): Stack.this.type
  157.  def permutations: Iterator[Stack[A]]
  158.  def pop(): A
  159.  def popAll(): collection.Seq[A]
  160.  def popWhile(f: (A) => Boolean): collection.Seq[A]
  161.  def prepend(elem: A): Stack.this.type
  162.  def prependAll(elems: IterableOnce[A]): Stack.this.type
  163.  def prepended[B >: A](elem: B): Stack[B]
  164.  def prependedAll[B >: A](prefix: IterableOnce[B]): Stack[B]
  165.  def product[B >: A](implicit num: math.Numeric[B]): B
  166.  def push(elem1: A, elem2: A, elems: A*): Stack.this.type
  167.  def push(elem: A): Stack.this.type
  168.  def pushAll(elems: IterableOnce[A]): Stack.this.type
  169.  def reduce[B >: A](op: (B, B) => B): B
  170.  def reduceLeft[B >: A](op: (B, A) => B): B
  171.  def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
  172.  def reduceOption[B >: A](op: (B, B) => B): Option[B]
  173.  def reduceRight[B >: A](op: (A, B) => B): B
  174.  def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
  175.  def remove(idx: Int): A
  176.  def remove(idx: Int, count: Int): Unit
  177.  def removeAll(p: (A) => Boolean): immutable.Seq[A]
  178.  def removeAll(): immutable.Seq[A]
  179.  def removeAllReverse(): immutable.Seq[A]
  180.  def removeFirst(p: (A) => Boolean, from: Int = 0): Option[A]
  181.  def removeHead(resizeInternalRepr: Boolean = false): A
  182.  def removeHeadOption(resizeInternalRepr: Boolean = false): Option[A]
  183.  def removeHeadWhile(f: (A) => Boolean): immutable.Seq[A]
  184.  def removeLast(resizeInternalRepr: Boolean = false): A
  185.  def removeLastOption(resizeInternalRepr: Boolean = false): Option[A]
  186.  def removeLastWhile(f: (A) => Boolean): immutable.Seq[A]
  187.  final def requireBounds(idx: Int, until: Int = length): Unit
  188.  def reverse: Stack[A]
  189.  def reverseIterator: Iterator[A]
  190.  def reversed: collection.Iterable[A]
  191.  def runWith[U](action: (A) => U): (Int) => Boolean
  192.  def sameElements[B >: A](that: IterableOnce[B]): Boolean
  193.  def scan[B >: A](z: B)(op: (B, B) => B): Stack[B]
  194.  def scanLeft[B](z: B)(op: (B, A) => B): Stack[B]
  195.  def scanRight[B](z: B)(op: (A, B) => B): Stack[B]
  196.  def search[B >: A](elem: B, from: Int, to: Int)(implicit ord: math.Ordering[B]): SearchResult
  197.  def search[B >: A](elem: B)(implicit ord: math.Ordering[B]): SearchResult
  198.  def segmentLength(p: (A) => Boolean, from: Int): Int
  199.  final def segmentLength(p: (A) => Boolean): Int
  200.  final def size: Int
  201.  final def sizeCompare(that: collection.Iterable[_]): Int
  202.  final def sizeCompare(otherSize: Int): Int
  203.  final def sizeIs: SizeCompareOps
  204.  def slice(from: Int, until: Int): Stack[A]
  205.  def sliceInPlace(start: Int, end: Int): Stack.this.type
  206.  def sliding(window: Int, step: Int): Iterator[Stack[A]]
  207.  def sliding(size: Int): Iterator[Stack[A]]
  208.  def sortBy[B](f: (A) => B)(implicit ord: Ordering[B]): Stack[A]
  209.  def sortInPlace[B >: A]()(implicit ord: Ordering[B]): Stack.this.type
  210.  def sortInPlaceBy[B](f: (A) => B)(implicit ord: Ordering[B]): Stack.this.type
  211.  def sortInPlaceWith(lt: (A, A) => Boolean): Stack.this.type
  212.  def sortWith(lt: (A, A) => Boolean): Stack[A]
  213.  def sorted[B >: A](implicit ord: Ordering[B]): Stack[A]
  214.  def span(p: (A) => Boolean): (Stack[A], Stack[A])
  215.  def splitAt(n: Int): (Stack[A], Stack[A])
  216.  def start_+(idx: Int): Int
  217.  def startsWith[B >: A](that: IterableOnce[B], offset: Int = 0): Boolean
  218.  def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S with EfficientSplit
  219.  final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[A, B]): C2
  220.  final def strictOptimizedConcat[B >: A, C2](that: IterableOnce[B], b: Builder[B, C2]): C2
  221.  final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: (A) => IterableOnce[B]): C2
  222.  final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: (A) => IterableOnce[B]): C2
  223.  final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: (A) => B): C2
  224.  final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[(A, B), C2]): C2
  225.  def stringPrefix: String
  226.  def subtractAll(xs: IterableOnce[A]): Stack.this.type
  227.  def subtractOne(elem: A): Stack.this.type
  228.  def sum[B >: A](implicit num: math.Numeric[B]): B
  229.  final def synchronized[T0](arg0: => T0): T0
  230.  def tail: Stack[A]
  231.  def tails: Iterator[Stack[A]]
  232.  def take(n: Int): Stack[A]
  233.  def takeInPlace(n: Int): Stack.this.type
  234.  def takeRight(n: Int): Stack[A]
  235.  def takeRightInPlace(n: Int): Stack.this.type
  236.  def takeWhile(p: (A) => Boolean): Stack[A]
  237.  def takeWhileInPlace(p: (A) => Boolean): Stack.this.type
  238.  def tapEach[U](f: (A) => U): Stack[A]
  239.  def to[C1](factory: Factory[A, C1]): C1
  240.  def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  241.  final def toBuffer[B >: A]: Buffer[B]
  242.  def toIndexedSeq: immutable.IndexedSeq[A]
  243.  def toList: immutable.List[A]
  244.  def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  245.  def toSeq: immutable.Seq[A]
  246.  def toSet[B >: A]: immutable.Set[B]
  247.  def toString(): String
  248.  def toVector: immutable.Vector[A]
  249.  final def top: A
  250.  def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): Stack[Stack[B]]
  251.  def trimToSize(): Unit
  252.  def unapply(a: Int): Option[A]
  253.  def unlift: PartialFunction[Int, B]
  254.  def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (Stack[A1], Stack[A2])
  255.  def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (Stack[A1], Stack[A2], Stack[A3])
  256.  def update(idx: Int, elem: A): Unit
  257.  def updated[B >: A](index: Int, elem: B): Stack[B]
  258.  def view: IndexedSeqView[A]
  259.  final def wait(): Unit
  260.  final def wait(arg0: Long, arg1: Int): Unit
  261.  final def wait(arg0: Long): Unit
  262.  def withFilter(p: (A) => Boolean): WithFilter[A, [_]Stack[_]]
  263.  def writeReplace(): AnyRef
  264.  def zip[B](that: IterableOnce[B]): Stack[(A, B)]
  265.  def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Stack[(A1, B)]
  266.  def zipWithIndex: Stack[(A, Int)]
Deprecated Value Members
  1.  final def +=(elem1: A, elem2: A, elems: A*): Stack.this.type
  2.  def -=(elem1: A, elem2: A, elems: A*): Stack.this.type
  3.  def /:[B](z: B)(op: (B, A) => B): B
  4.  final def /:[B](z: B)(op: (B, A) => B): B
  5.  def :\[B](z: B)(op: (A, B) => B): B
  6.  final def :\[B](z: B)(op: (A, B) => B): B
  7.  def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
  8.  final def append(elems: A*): Stack.this.type
  9.  def collectFirst[B](f: PartialFunction[A, B]): Option[B]
  10.  def companion: IterableFactory[[_]Stack[_]]
  11.  def copyToBuffer(dest: Buffer[A]): Unit
  12.  final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
  13.  def count(f: (A) => Boolean): Int
  14.  def exists(f: (A) => Boolean): Boolean
  15.  def filter(f: (A) => Boolean): Iterator[A]
  16.  def find(p: (A) => Boolean): Option[A]
  17.  def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
  18.  def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  19.  def foldLeft[B](z: B)(op: (B, A) => B): B
  20.  def foldRight[B](z: B)(op: (A, B) => B): B
  21.  def forall(f: (A) => Boolean): Boolean
  22.  def foreach[U](f: (A) => U): Unit
  23.  def formatted(fmtstr: String): String
  24.  def hasDefiniteSize: Boolean
  25.  def isEmpty: Boolean
  26.  def map[B](f: (A) => B): IterableOnce[B]
  27.  def max(implicit ord: math.Ordering[A]): A
  28.  def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  29.  def min(implicit ord: math.Ordering[A]): A
  30.  def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  31.  def mkString: String
  32.  def mkString(sep: String): String
  33.  def mkString(start: String, sep: String, end: String): String
  34.  def nonEmpty: Boolean
  35.  final def prefixLength(p: (A) => Boolean): Int
  36.  final def prepend(elems: A*): Stack.this.type
  37.  def product(implicit num: math.Numeric[A]): A
  38.  def reduce(f: (A, A) => A): A
  39.  def reduceLeft(f: (A, A) => A): A
  40.  def reduceLeftOption(f: (A, A) => A): Option[A]
  41.  def reduceOption(f: (A, A) => A): Option[A]
  42.  def reduceRight(f: (A, A) => A): A
  43.  def reduceRightOption(f: (A, A) => A): Option[A]
  44.  final def repr: Stack[A]
  45.  def reverseMap[B](f: (A) => B): Stack[B]
  46.  def sameElements[B >: A](that: IterableOnce[B]): Boolean
  47.  def seq: Stack.this.type
  48.  def size: Int
  49.  def sum(implicit num: math.Numeric[A]): A
  50.  def to[C1](factory: Factory[A, C1]): C1
  51.  def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  52.  def toBuffer[B >: A]: Buffer[B]
  53.  def toIndexedSeq: collection.IndexedSeq[A]
  54.  final def toIterable: collection.Iterable[A]
  55.  final def toIterable: Stack.this.type
  56.  def toIterator: Iterator[A]
  57.  final def toIterator: Iterator[A]
  58.  def toList: immutable.List[A]
  59.  def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
  60.  def toSeq: immutable.Seq[A]
  61.  def toSet[B >: A]: immutable.Set[B]
  62.  def toStream: immutable.Stream[A]
  63.  final def toStream: immutable.Stream[A]
  64.  final def toTraversable: collection.Traversable[A]
  65.  final def toTraversable: collection.Traversable[A]
  66.  def toVector: immutable.Vector[A]
  67.  final def transform(f: (A) => A): Stack.this.type
  68.  def trimEnd(n: Int): Unit
  69.  def trimStart(n: Int): Unit
  70.  final def union[B >: A](that: collection.Seq[B]): Stack[B]
  71.  def view(from: Int, until: Int): IndexedSeqView[A]
  72.  def withFilter(f: (A) => Boolean): Iterator[A]
  73.  def →[B](y: B): (Stack[A], B)
Inherited from (Int) => A

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4