A RetroSearch Logo

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

Search Query:

Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/immutable/StreamView.html below:

Scala Standard Library 2.12.19 - scala.collection.immutable.StreamView

trait StreamView[+A, +Coll] extends StreamViewLike[A, Coll, StreamView[A, Coll]]

 

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamView
  2. StreamViewLike
  3. SeqView
  4. SeqViewLike
  5. IterableView
  6. IterableViewLike
  7. TraversableView
  8. TraversableViewLike
  9. ViewMkString
  10. Seq
  11. SeqLike
  12. GenSeq
  13. GenSeqLike
  14. Iterable
  15. IterableLike
  16. Equals
  17. GenIterable
  18. GenIterableLike
  19. Traversable
  20. GenTraversable
  21. GenericTraversableTemplate
  22. TraversableLike
  23. GenTraversableLike
  24. Parallelizable
  25. TraversableOnce
  26. GenTraversableOnce
  27. FilterMonadic
  28. HasNewBuilder
  29. PartialFunction
  30. Function1
  31. AnyRef
  32. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
Abstract Value Members
  1.  abstract def apply(idx: Int): A
  2.  abstract def iterator: Iterator[A]
  3.  abstract def length: Int
  4.  abstract def underlying: Coll
Concrete Value Members
  1.  final def !=(arg0: Any): Boolean
  2.  final def ##(): Int
  3.  def +(other: String): String
  4.  def ++[B >: A, That](xs: GenTraversableOnce[B])(implicit bf: CanBuildFrom[StreamView[A, Coll], B, That]): That
  5.  def ++:[B >: A, That](xs: collection.Traversable[B])(implicit bf: CanBuildFrom[StreamView[A, Coll], B, That]): That
  6.  def ++:[B](that: TraversableOnce[B]): Seq[B]
  7.  def +:(elem: A): Seq[A]
  8.  def ->[B](y: B): (StreamView[A, Coll], B)
  9.  def :+(elem: A): Seq[A]
  10.  final def ==(arg0: Any): Boolean
  11.  def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
  12.  def addString(b: StringBuilder): StringBuilder
  13.  def addString(b: StringBuilder, sep: String): StringBuilder
  14.  def aggregate[B](z: ⇒ B)(seqop: (B, A) ⇒ B, combop: (B, B) ⇒ B): B
  15.  def andThen[C](k: (A) ⇒ C): PartialFunction[Int, C]
  16.  def applyOrElse[A1 <: Int, B1 >: A](x: A1, default: (A1) ⇒ B1): B1
  17.  final def asInstanceOf[T0]: T0
  18.  def canEqual(that: Any): Boolean
  19.  def clone(): AnyRef
  20.  def collect[B](pf: PartialFunction[A, B]): Seq[B]
  21.  def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
  22.  def combinations(n: Int): Iterator[StreamView[A, Coll]]
  23.  def companion: GenericCompanion[collection.Seq]
  24.  def compose[A](g: (A) ⇒ Int): (A) ⇒ A
  25.  def contains[A1 >: A](elem: A1): Boolean
  26.  def containsSlice[B](that: GenSeq[B]): Boolean
  27.  def copyToArray(xs: Array[A], start: Int, len: Int): Unit
  28.  def copyToArray(xs: Array[A]): Unit
  29.  def copyToArray(xs: Array[A], start: Int): Unit
  30.  def copyToBuffer[B >: A](dest: Buffer[B]): Unit
  31.  def corresponds[B](that: GenSeq[B])(p: (A, B) ⇒ Boolean): Boolean
  32.  def count(p: (A) ⇒ Boolean): Int
  33.  def diff(that: collection.Seq[A]): Seq[A]
  34.  def distinct: StreamView[A, Coll]
  35.  def drop(n: Int): StreamView[A, Coll]
  36.  def dropRight(n: Int): StreamView[A, Coll]
  37.  def dropWhile(p: (A) ⇒ Boolean): StreamView[A, Coll]
  38.  def endsWith[B](that: GenSeq[B]): Boolean
  39.  def ensuring(cond: (StreamView[A, Coll]) ⇒ Boolean, msg: ⇒ Any): StreamView[A, Coll]
  40.  def ensuring(cond: (StreamView[A, Coll]) ⇒ Boolean): StreamView[A, Coll]
  41.  def ensuring(cond: Boolean, msg: ⇒ Any): StreamView[A, Coll]
  42.  def ensuring(cond: Boolean): StreamView[A, Coll]
  43.  final def eq(arg0: AnyRef): Boolean
  44.  def equals(that: Any): Boolean
  45.  def exists(p: (A) ⇒ Boolean): Boolean
  46.  def filter(p: (A) ⇒ Boolean): StreamView[A, Coll]
  47.  def filterNot(p: (A) ⇒ Boolean): StreamView[A, Coll]
  48.  def finalize(): Unit
  49.  def find(p: (A) ⇒ Boolean): Option[A]
  50.  def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Seq[B]
  51.  def flatten[B]: Seq[B]
  52.  def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
  53.  def foldLeft[B](z: B)(op: (B, A) ⇒ B): B
  54.  def foldRight[B](z: B)(op: (A, B) ⇒ B): B
  55.  def forall(p: (A) ⇒ Boolean): Boolean
  56.  def force[B >: A, That](implicit bf: CanBuildFrom[Coll, B, That]): That
  57.  def foreach(f: (A) ⇒ Unit): Unit
  58.  def genericBuilder[B]: Builder[B, collection.Seq[B]]
  59.  final def getClass(): Class[_]
  60.  def groupBy[K](f: (A) ⇒ K): Map[K, StreamView[A, Coll]]
  61.  def grouped(size: Int): Iterator[StreamView[A, Coll]]
  62.  def hasDefiniteSize: Boolean
  63.  def hashCode(): Int
  64.  def head: A
  65.  def headOption: Option[A]
  66.  def indexOf(elem: A, from: Int): Int
  67.  def indexOf(elem: A): Int
  68.  def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int
  69.  def indexOfSlice[B >: A](that: GenSeq[B]): Int
  70.  def indexWhere(p: (A) ⇒ Boolean, from: Int): Int
  71.  def indexWhere(p: (A) ⇒ Boolean): Int
  72.  def indices: Range
  73.  def init: StreamView[A, Coll]
  74.  def inits: Iterator[StreamView[A, Coll]]
  75.  def intersect(that: collection.Seq[A]): Seq[A]
  76.  def isDefinedAt(idx: Int): Boolean
  77.  def isEmpty: Boolean
  78.  final def isInstanceOf[T0]: Boolean
  79.  final def isTraversableAgain: Boolean
  80.  def last: A
  81.  def lastIndexOf(elem: A, end: Int): Int
  82.  def lastIndexOf(elem: A): Int
  83.  def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int
  84.  def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int
  85.  def lastIndexWhere(p: (A) ⇒ Boolean, end: Int): Int
  86.  def lastIndexWhere(p: (A) ⇒ Boolean): Int
  87.  def lastOption: Option[A]
  88.  def lengthCompare(len: Int): Int
  89.  def lift: (Int) ⇒ Option[A]
  90.  def map[B](f: (A) ⇒ B): Seq[B]
  91.  def max: A
  92.  def maxBy[B](f: (A) ⇒ B): A
  93.  def min: A
  94.  def minBy[B](f: (A) ⇒ B): A
  95.  def mkString(start: String, sep: String, end: String): String
  96.  def mkString(sep: String): String
  97.  def mkString: String
  98.  final def ne(arg0: AnyRef): Boolean
  99.  def newAppended[B >: A](that: GenTraversable[B]): Transformed[B]
  100.  def newBuilder: Builder[A, StreamView[A, Coll]]
  101.  def newDropped(n: Int): StreamView.Transformed[A]
  102.  def newDroppedWhile(p: (A) ⇒ Boolean): Transformed[A]
  103.  def newFiltered(p: (A) ⇒ Boolean): Transformed[A]
  104.  def newFlatMapped[B](f: (A) ⇒ GenTraversableOnce[B]): Transformed[B]
  105.  def newForced[B](xs: ⇒ GenSeq[B]): Transformed[B]
  106.  def newMapped[B](f: (A) ⇒ B): Transformed[B]
  107.  def newPatched[B >: A](_from: Int, _patch: GenSeq[B], _replaced: Int): Transformed[B]
  108.  def newPrepended[B >: A](that: GenTraversable[B]): Transformed[B]
  109.  def newReversed: Transformed[A]
  110.  def newSliced(_endpoints: SliceInterval): Transformed[A]
  111.  def newTaken(n: Int): StreamView.Transformed[A]
  112.  def newTakenWhile(p: (A) ⇒ Boolean): Transformed[A]
  113.  def newZipped[B](that: GenIterable[B]): Transformed[(A, B)]
  114.  def newZippedAll[A1 >: A, B](that: GenIterable[B], _thisElem: A1, _thatElem: B): Transformed[(A1, B)]
  115.  def nonEmpty: Boolean
  116.  final def notify(): Unit
  117.  final def notifyAll(): Unit
  118.  def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
  119.  def padTo(len: Int, elem: A): Seq[A]
  120.  def par: ParSeq[A]
  121.  def parCombiner: Combiner[A, ParSeq[A]]
  122.  def partition(p: (A) ⇒ Boolean): (StreamView[A, Coll], StreamView[A, Coll])
  123.  def patch(from: Int, that: GenSeq[A], replaced: Int): Seq[A]
  124.  def permutations: Iterator[StreamView[A, Coll]]
  125.  def prefixLength(p: (A) ⇒ Boolean): Int
  126.  def product: A
  127.  def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
  128.  def reduceLeft[B >: A](op: (B, A) ⇒ B): B
  129.  def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]
  130.  def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
  131.  def reduceRight[B >: A](op: (A, B) ⇒ B): B
  132.  def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]
  133.  def repr: StreamView[A, Coll]
  134.  def reverse: StreamView[A, Coll]
  135.  def reverseIterator: Iterator[A]
  136.  def reverseMap[B](f: (A) ⇒ B): Seq[B]
  137.  def reversed: scala.List[A]
  138.  def runWith[U](action: (A) ⇒ U): (Int) ⇒ Boolean
  139.  def sameElements(that: GenIterable[A]): Boolean
  140.  def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[StreamView[A, Coll], B, That]): That
  141.  def scanLeft[B, That](z: B)(op: (B, A) ⇒ B)(implicit bf: CanBuildFrom[StreamView[A, Coll], B, That]): That
  142.  def scanRight[B, That](z: B)(op: (A, B) ⇒ B)(implicit bf: CanBuildFrom[StreamView[A, Coll], B, That]): That
  143.  def segmentLength(p: (A) ⇒ Boolean, from: Int): Int
  144.  def seq: collection.Seq[A]
  145.  def size: Int
  146.  def sizeHintIfCheap: Int
  147.  def slice(from: Int, until: Int): StreamView[A, Coll]
  148.  def sliding(size: Int): Iterator[StreamView[A, Coll]]
  149.  def sliding(size: Int, step: Int): Iterator[StreamView[A, Coll]]
  150.  def sortBy[B](f: (A) ⇒ B)(implicit ord: Ordering[B]): StreamView[A, Coll]
  151.  def sortWith(lt: (A, A) ⇒ Boolean): StreamView[A, Coll]
  152.  def sorted[B >: A](implicit ord: Ordering[B]): StreamView[A, Coll]
  153.  def span(p: (A) ⇒ Boolean): (StreamView[A, Coll], StreamView[A, Coll])
  154.  def splitAt(n: Int): (StreamView[A, Coll], StreamView[A, Coll])
  155.  def startsWith[B](that: GenSeq[B], offset: Int): Boolean
  156.  def startsWith[B](that: GenSeq[B]): Boolean
  157.  def stringPrefix: String
  158.  def sum: A
  159.  final def synchronized[T0](arg0: ⇒ T0): T0
  160.  def tail: StreamView[A, Coll]
  161.  def tails: Iterator[StreamView[A, Coll]]
  162.  def take(n: Int): StreamView[A, Coll]
  163.  def takeRight(n: Int): StreamView[A, Coll]
  164.  def takeWhile(p: (A) ⇒ Boolean): StreamView[A, Coll]
  165.  def thisCollection: collection.Seq[A]
  166.  def thisSeq: collection.Seq[A]
  167.  def to[Col[_]]: Col[A]
  168.  def toArray: Array[A]
  169.  def toBuffer[B >: A]: Buffer[B]
  170.  def toCollection(repr: StreamView[A, Coll]): collection.Seq[A]
  171.  def toIndexedSeq: IndexedSeq[A]
  172.  def toIterable: collection.Iterable[A]
  173.  def toIterator: Iterator[A]
  174.  def toList: scala.List[A]
  175.  def toMap[T, U]: collection.Map[T, U]
  176.  def toParArray: ParArray[T]
  177.  def toSeq: collection.Seq[A]
  178.  def toSet[B >: A]: Set[B]
  179.  def toStream: Stream[A]
  180.  def toString(): String
  181.  def toTraversable: collection.Traversable[A]
  182.  def toVector: scala.Vector[A]
  183.  def transpose[B](implicit asTraversable: (A) ⇒ GenTraversableOnce[B]): collection.Seq[collection.Seq[B]]
  184.  def union(that: collection.Seq[A]): Seq[A]
  185.  def unzip[A1, A2](implicit asPair: (A) ⇒ (A1, A2)): (StreamView.Transformed[A1], StreamView.Transformed[A2])
  186.  def unzip3[A1, A2, A3](implicit asTriple: (A) ⇒ (A1, A2, A3)): (StreamView.Transformed[A1], StreamView.Transformed[A2], StreamView.Transformed[A3])
  187.  def updated(index: Int, elem: A): Seq[A]
  188.  def view(from: Int, until: Int): SeqView[A, StreamView[A, Coll]]
  189.  def view: SeqView[A, StreamView[A, Coll]]
  190.  def viewIdString: String
  191.  def viewIdentifier: String
  192.  def viewToString: String
  193.  final def wait(): Unit
  194.  final def wait(arg0: Long, arg1: Int): Unit
  195.  final def wait(arg0: Long): Unit
  196.  def withFilter(p: (A) ⇒ Boolean): StreamView[A, Coll]
  197.  def zip[B](that: GenIterable[B]): Seq[(A, B)]
  198.  def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Seq[(A, B)]
  199.  def zipWithIndex: Seq[(A, Int)]
  200.  def →[B](y: B): (StreamView[A, Coll], B)
Deprecated Value Members
  1.  def /:[B](z: B)(op: (B, A) ⇒ B): B
  2.  def :\[B](z: B)(op: (A, B) ⇒ B): B
  3.  def formatted(fmtstr: String): String
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