Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/immutable/IndexedSeq.html below:
Scala Standard Library 2.12.19 - scala.collection.immutable.IndexedSeq
trait IndexedSeq[+A] extends Seq[A] with collection.IndexedSeq[A] with GenericTraversableTemplate[A, IndexedSeq] with IndexedSeqLike[A, IndexedSeq[A]]
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- IndexedSeq
- IndexedSeq
- IndexedSeqLike
- Seq
- Seq
- SeqLike
- GenSeq
- GenSeqLike
- PartialFunction
- Function1
- Iterable
- Iterable
- IterableLike
- Equals
- GenIterable
- GenIterableLike
- Traversable
- Immutable
- Traversable
- GenTraversable
- GenericTraversableTemplate
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- AnyRef
- Any
Implicitly
- by CollectionsHaveToParArray
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
Abstract Value Members
- î
abstract def apply(idx: Int): A
- î
abstract def length: Int
Concrete Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##(): Int
- î
def +(other: String): String
- î
def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[A], B, That]): That
- î
def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[IndexedSeq[A], B, That]): That
- î
def ++:[B](that: TraversableOnce[B]): IndexedSeq[B]
- î
def +:(elem: A): IndexedSeq[A]
- î
def ->[B](y: B): (IndexedSeq[A], B)
- î
def :+(elem: A): IndexedSeq[A]
- î
final def ==(arg0: Any): Boolean
- î
def addString(b: StringBuilder): StringBuilder
- î
def addString(b: StringBuilder, sep: String): StringBuilder
- î
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- î
def aggregate[B](z: â B)(seqop: (B, A) â B, combop: (B, B) â B): B
- î
def andThen[C](k: (A) â C): PartialFunction[Int, C]
- î
def applyOrElse[A1 <: Int, B1 >: A](x: A1, default: (A1) â B1): B1
- î
final def asInstanceOf[T0]: T0
- î
def canEqual(that: Any): Boolean
- î
def clone(): AnyRef
- î
def collect[B](pf: PartialFunction[A, B]): IndexedSeq[B]
- î
def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- î
def combinations(n: Int): Iterator[IndexedSeq[A]]
- î
def companion: GenericCompanion[IndexedSeq]
- î
def compose[A](g: (A) â Int): (A) â A
- î
def contains[A1 >: A](elem: A1): Boolean
- î
def containsSlice[B](that: GenSeq[B]): Boolean
- î
def copyToArray(xs: Array[A], start: Int, len: Int): Unit
- î
def copyToArray(xs: Array[A]): Unit
- î
def copyToArray(xs: Array[A], start: Int): Unit
- î
def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- î
def corresponds[B](that: GenSeq[B])(p: (A, B) â Boolean): Boolean
- î
def count(p: (A) â Boolean): Int
- î
def diff(that: collection.Seq[A]): IndexedSeq[A]
- î
def distinct: IndexedSeq[A]
- î
def drop(n: Int): IndexedSeq[A]
- î
def dropRight(n: Int): IndexedSeq[A]
- î
def dropWhile(p: (A) â Boolean): IndexedSeq[A]
- î
def endsWith[B](that: GenSeq[B]): Boolean
- î
def ensuring(cond: (IndexedSeq[A]) â Boolean, msg: â Any): IndexedSeq[A]
- î
def ensuring(cond: (IndexedSeq[A]) â Boolean): IndexedSeq[A]
- î
def ensuring(cond: Boolean, msg: â Any): IndexedSeq[A]
- î
def ensuring(cond: Boolean): IndexedSeq[A]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(that: Any): Boolean
- î
def exists(p: (A) â Boolean): Boolean
- î
def filter(p: (A) â Boolean): IndexedSeq[A]
- î
def filterNot(p: (A) â Boolean): IndexedSeq[A]
- î
def finalize(): Unit
- î
def find(p: (A) â Boolean): Option[A]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): IndexedSeq[B]
- î
def flatten[B]: IndexedSeq[B]
- î
def fold[A1 >: A](z: A1)(op: (A1, A1) â A1): A1
- î
def foldLeft[B](z: B)(op: (B, A) â B): B
- î
def foldRight[B](z: B)(op: (A, B) â B): B
- î
def forall(p: (A) â Boolean): Boolean
- î
def foreach(f: (A) â Unit): Unit
- î
def genericBuilder[B]: Builder[B, IndexedSeq[B]]
- î
final def getClass(): Class[_]
- î
def groupBy[K](f: (A) â K): Map[K, IndexedSeq[A]]
- î
def grouped(size: Int): Iterator[IndexedSeq[A]]
- î
def hasDefiniteSize: Boolean
- î
def hashCode(): Int
- î
def head: A
- î
def headOption: Option[A]
- î
def indexOf(elem: A, from: Int): Int
- î
def indexOf(elem: A): Int
- î
def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int
- î
def indexOfSlice[B >: A](that: GenSeq[B]): Int
- î
def indexWhere(p: (A) â Boolean, from: Int): Int
- î
def indexWhere(p: (A) â Boolean): Int
- î
def indices: Range
- î
def init: IndexedSeq[A]
- î
def inits: Iterator[IndexedSeq[A]]
- î
def intersect(that: collection.Seq[A]): IndexedSeq[A]
- î
def isDefinedAt(idx: Int): Boolean
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
final def isTraversableAgain: Boolean
- î
def iterator: Iterator[A]
- î
def last: A
- î
def lastIndexOf(elem: A, end: Int): Int
- î
def lastIndexOf(elem: A): Int
- î
def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int
- î
def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int
- î
def lastIndexWhere(p: (A) â Boolean, end: Int): Int
- î
def lastIndexWhere(p: (A) â Boolean): Int
- î
def lastOption: Option[A]
- î
def lengthCompare(len: Int): Int
- î
def lift: (Int) â Option[A]
- î
def map[B](f: (A) â B): IndexedSeq[B]
- î
def max: A
- î
def maxBy[B](f: (A) â B): A
- î
def min: A
- î
def minBy[B](f: (A) â B): A
- î
def mkString: String
- î
def mkString(sep: String): String
- î
def mkString(start: String, sep: String, end: String): String
- î
final def ne(arg0: AnyRef): Boolean
- î
def newBuilder: Builder[A, IndexedSeq[A]]
- î
def nonEmpty: Boolean
- î
final def notify(): Unit
- î
final def notifyAll(): Unit
- î
def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- î
def padTo(len: Int, elem: A): IndexedSeq[A]
- î
def par: ParSeq[A]
- î
def parCombiner: Combiner[A, ParSeq[A]]
- î
def partition(p: (A) â Boolean): (IndexedSeq[A], IndexedSeq[A])
- î
def patch(from: Int, that: GenSeq[A], replaced: Int): IndexedSeq[A]
- î
def permutations: Iterator[IndexedSeq[A]]
- î
def prefixLength(p: (A) â Boolean): Int
- î
def product: A
- î
def reduce[A1 >: A](op: (A1, A1) â A1): A1
- î
def reduceLeft[B >: A](op: (B, A) â B): B
- î
def reduceLeftOption[B >: A](op: (B, A) â B): Option[B]
- î
def reduceOption[A1 >: A](op: (A1, A1) â A1): Option[A1]
- î
def reduceRight[B >: A](op: (A, B) â B): B
- î
def reduceRightOption[B >: A](op: (A, B) â B): Option[B]
- î
def repr: IndexedSeq[A]
- î
def reverse: IndexedSeq[A]
- î
def reverseIterator: Iterator[A]
- î
def reverseMap[B](f: (A) â B): IndexedSeq[B]
- î
def reversed: scala.List[A]
- î
def runWith[U](action: (A) â U): (Int) â Boolean
- î
def sameElements(that: GenIterable[A]): Boolean
- î
def scan[B >: A, That](z: B)(op: (B, B) â B)(implicit cbf: CanBuildFrom[IndexedSeq[A], B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, A) â B)(implicit bf: CanBuildFrom[IndexedSeq[A], B, That]): That
- î
def scanRight[B, That](z: B)(op: (A, B) â B)(implicit bf: CanBuildFrom[IndexedSeq[A], B, That]): That
- î
def segmentLength(p: (A) â Boolean, from: Int): Int
- î
def seq: IndexedSeq[A]
- î
def size: Int
- î
def sizeHintIfCheap: Int
- î
def slice(from: Int, until: Int): IndexedSeq[A]
- î
def sliding(size: Int, step: Int): Iterator[IndexedSeq[A]]
- î
def sliding(size: Int): Iterator[IndexedSeq[A]]
- î
def sortBy[B](f: (A) â B)(implicit ord: math.Ordering[B]): IndexedSeq[A]
- î
def sortWith(lt: (A, A) â Boolean): IndexedSeq[A]
- î
def sorted[B >: A](implicit ord: math.Ordering[B]): IndexedSeq[A]
- î
def span(p: (A) â Boolean): (IndexedSeq[A], IndexedSeq[A])
- î
def splitAt(n: Int): (IndexedSeq[A], IndexedSeq[A])
- î
def startsWith[B](that: GenSeq[B], offset: Int): Boolean
- î
def startsWith[B](that: GenSeq[B]): Boolean
- î
def stringPrefix: String
- î
def sum: A
- î
final def synchronized[T0](arg0: â T0): T0
- î
def tail: IndexedSeq[A]
- î
def tails: Iterator[IndexedSeq[A]]
- î
def take(n: Int): IndexedSeq[A]
- î
def takeRight(n: Int): IndexedSeq[A]
- î
def takeWhile(p: (A) â Boolean): IndexedSeq[A]
- î
def thisCollection: collection.IndexedSeq[A]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[A1 >: A]: Buffer[A1]
- î
def toCollection(repr: IndexedSeq[A]): collection.IndexedSeq[A]
- î
def toIndexedSeq: IndexedSeq[A]
- î
def toIterable: collection.Iterable[A]
- î
def toIterator: Iterator[A]
- î
def toList: scala.List[A]
- î
def toMap[T, U]: collection.Map[T, U]
- î
def toParArray: ParArray[T]
- î
def toSeq: Seq[A]
- î
def toSet[B >: A]: Set[B]
- î
def toStream: Stream[A]
- î
def toString(): String
- î
def toTraversable: collection.Traversable[A]
- î
def toVector: scala.Vector[A]
- î
def transpose[B](implicit asTraversable: (A) â GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]
- î
def union(that: collection.Seq[A]): IndexedSeq[A]
- î
def unzip[A1, A2](implicit asPair: (A) â (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
- î
def unzip3[A1, A2, A3](implicit asTriple: (A) â (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
- î
def updated(index: Int, elem: A): IndexedSeq[A]
- î
def view(from: Int, until: Int): SeqView[A, IndexedSeq[A]]
- î
def view: SeqView[A, IndexedSeq[A]]
- î
final def wait(): Unit
- î
final def wait(arg0: Long, arg1: Int): Unit
- î
final def wait(arg0: Long): Unit
- î
def withFilter(p: (A) â Boolean): FilterMonadic[A, IndexedSeq[A]]
- î
def zip[B](that: GenIterable[B]): IndexedSeq[(A, B)]
- î
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): IndexedSeq[(A, B)]
- î
def zipWithIndex: IndexedSeq[(A, Int)]
- î
def â[B](y: B): (IndexedSeq[A], B)
Deprecated Value Members
- î
def /:[B](z: B)(op: (B, A) â B): B
- î
def :\[B](z: B)(op: (A, B) â B): B
- î
def formatted(fmtstr: String): String
Inherited from (Int) â A Inherited from HasNewBuilder[A, scala.collection.immutable.IndexedSeq[A] @scala.annotation.unchecked.uncheckedVariance]
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