Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/mutable/ArrayLike.html below:
Scala Standard Library 2.12.19 - scala.collection.mutable.ArrayLike
trait ArrayLike[A, +Repr] extends IndexedSeqOptimized[A, Repr]
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- ArrayLike
- IndexedSeqOptimized
- IndexedSeqOptimized
- IndexedSeqLike
- IndexedSeqLike
- SeqLike
- GenSeqLike
- IterableLike
- GenIterableLike
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- Equals
- Any
Implicitly
- by CollectionsHaveToParArray
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
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[Repr, B, That]): That
- î
def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Repr, B, That]): That
- î
def ++:[B](that: TraversableOnce[B]): ArrayLike[B]
- î
def +:(elem: A): ArrayLike[A]
- î
def ->[B](y: B): (ArrayLike[A, Repr], B)
- î
def :+(elem: A): ArrayLike[A]
- î
final def ==(arg0: Any): Boolean
- î
def addString(b: scala.StringBuilder): scala.StringBuilder
- î
def addString(b: scala.StringBuilder, sep: String): scala.StringBuilder
- î
def addString(b: scala.StringBuilder, start: String, sep: String, end: String): scala.StringBuilder
- î
def aggregate[B](z: â B)(seqop: (B, A) â B, combop: (B, B) â B): B
- î
final def asInstanceOf[T0]: T0
- î
def canEqual(that: Any): Boolean
- î
def collect[B](pf: PartialFunction[A, B]): ArrayLike[B]
- î
def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- î
def combinations(n: Int): Iterator[Repr]
- î
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 deep: collection.IndexedSeq[Any]
- î
def diff(that: collection.Seq[A]): ArrayLike[A]
- î
def distinct: Repr
- î
def drop(n: Int): Repr
- î
def dropRight(n: Int): Repr
- î
def dropWhile(p: (A) â Boolean): Repr
- î
def endsWith[B](that: GenSeq[B]): Boolean
- î
def ensuring(cond: (ArrayLike[A, Repr]) â Boolean, msg: â Any): ArrayLike[A, Repr]
- î
def ensuring(cond: (ArrayLike[A, Repr]) â Boolean): ArrayLike[A, Repr]
- î
def ensuring(cond: Boolean, msg: â Any): ArrayLike[A, Repr]
- î
def ensuring(cond: Boolean): ArrayLike[A, Repr]
- î
def equals(that: Any): Boolean
- î
def exists(p: (A) â Boolean): Boolean
- î
def filter(p: (A) â Boolean): Repr
- î
def filterNot(p: (A) â Boolean): Repr
- î
def find(p: (A) â Boolean): Option[A]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): ArrayLike[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 groupBy[K](f: (A) â K): immutable.Map[K, Repr]
- î
def grouped(size: Int): Iterator[Repr]
- î
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: immutable.Range
- î
def init: Repr
- î
def inits: Iterator[Repr]
- î
def intersect(that: collection.Seq[A]): ArrayLike[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 map[B](f: (A) â B): ArrayLike[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
- î
def nonEmpty: Boolean
- î
def padTo(len: Int, elem: A): ArrayLike[A]
- î
def par: ParSeq[A]
- î
def parCombiner: Combiner[A, ParSeq[A]]
- î
def partition(p: (A) â Boolean): (Repr, Repr)
- î
def patch(from: Int, that: GenSeq[A], replaced: Int): ArrayLike[A]
- î
def permutations: Iterator[Repr]
- î
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: Repr
- î
def reverse: Repr
- î
def reverseIterator: Iterator[A]
- î
def reverseMap[B](f: (A) â B): ArrayLike[B]
- î
def reversed: List[A]
- î
def sameElements(that: GenIterable[A]): Boolean
- î
def scan[B >: A, That](z: B)(op: (B, B) â B)(implicit cbf: CanBuildFrom[Repr, B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, A) â B)(implicit bf: CanBuildFrom[Repr, B, That]): That
- î
def scanRight[B, That](z: B)(op: (A, B) â B)(implicit bf: CanBuildFrom[Repr, B, That]): That
- î
def segmentLength(p: (A) â Boolean, from: Int): Int
- î
def size: Int
- î
def sizeHintIfCheap: Int
- î
def slice(from: Int, until: Int): Repr
- î
def sliding(size: Int, step: Int): Iterator[Repr]
- î
def sliding(size: Int): Iterator[Repr]
- î
def sortBy[B](f: (A) â B)(implicit ord: math.Ordering[B]): Repr
- î
def sortWith(lt: (A, A) â Boolean): Repr
- î
def sorted[B >: A](implicit ord: math.Ordering[B]): Repr
- î
def span(p: (A) â Boolean): (Repr, Repr)
- î
def splitAt(n: Int): (Repr, Repr)
- î
def startsWith[B](that: GenSeq[B], offset: Int): Boolean
- î
def startsWith[B](that: GenSeq[B]): Boolean
- î
def stringPrefix: String
- î
def sum: A
- î
def tail: Repr
- î
def tails: Iterator[Repr]
- î
def take(n: Int): Repr
- î
def takeRight(n: Int): Repr
- î
def takeWhile(p: (A) â Boolean): Repr
- î
def thisCollection: IndexedSeq[A]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[A1 >: A]: Buffer[A1]
- î
def toCollection(repr: Repr): IndexedSeq[A]
- î
def toIndexedSeq: immutable.IndexedSeq[A]
- î
def toIterable: collection.Iterable[A]
- î
def toIterator: Iterator[A]
- î
def toList: List[A]
- î
def toMap[T, U]: collection.Map[T, U]
- î
def toParArray: ParArray[T]
- î
def toSeq: collection.Seq[A]
- î
def toSet[B >: A]: immutable.Set[B]
- î
def toStream: immutable.Stream[A]
- î
def toString(): String
- î
def toTraversable: collection.Traversable[A]
- î
def toVector: Vector[A]
- î
def union(that: collection.Seq[A]): ArrayLike[A]
- î
def updated(index: Int, elem: A): ArrayLike[A]
- î
def view(from: Int, until: Int): IndexedSeqView[A, Repr]
- î
def view: IndexedSeqView[A, Repr]
- î
def withFilter(p: (A) â Boolean): FilterMonadic[A, Repr]
- î
def zip[B](that: GenIterable[B]): ArrayLike[(A, B)]
- î
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): ArrayLike[(A, B)]
- î
def zipWithIndex: ArrayLike[(A, Int)]
- î
def â[B](y: B): (ArrayLike[A, Repr], 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
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