Showing content from http://www.scala-lang.org/api/2.12.19/scala/Array.html below:
Scala Standard Library 2.12.19 - scala.Array
final class Array[T] extends java.io.Serializable with java.lang.Cloneable
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- Array
- Cloneable
- Serializable
- AnyRef
- Any
Implicitly
- by genericArrayOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
Instance Constructors
- î
new Array(_length: Int)
Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##(): Int
- î
def +(other: String): String
- î
def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That
- î
def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[T], B, That]): That
- î
def ++:[B](that: collection.TraversableOnce[B]): Array[B]
- î
def +:[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]
- î
def +:(elem: A): Array[A]
- î
def ->[B](y: B): (Array[T], B)
- î
def :+[B >: T](elem: B)(implicit arg0: ClassTag[B]): Array[B]
- î
def :+(elem: A): Array[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, T) â B, combop: (B, B) â B): B
- î
def apply(i: Int): T
- î
final def asInstanceOf[T0]: T0
- î
def canEqual(that: Any): Boolean
- î
def clone(): Array[T]
- î
def collect[B](pf: PartialFunction[A, B]): Array[B]
- î
def collectFirst[B](pf: PartialFunction[T, B]): Option[B]
- î
def combinations(n: Int): collection.Iterator[Array[T]]
- î
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: (T, B) â Boolean): Boolean
- î
def count(p: (T) â Boolean): Int
- î
def deep: collection.IndexedSeq[Any]
- î
def diff(that: collection.Seq[T]): Array[T]
- î
def distinct: Array[T]
- î
def drop(n: Int): Array[T]
- î
def dropRight(n: Int): Array[T]
- î
def dropWhile(p: (T) â Boolean): Array[T]
- î
def endsWith[B](that: GenSeq[B]): Boolean
- î
def ensuring(cond: (Array[T]) â Boolean, msg: â Any): Array[T]
- î
def ensuring(cond: (Array[T]) â Boolean): Array[T]
- î
def ensuring(cond: Boolean, msg: â Any): Array[T]
- î
def ensuring(cond: Boolean): Array[T]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(arg0: Any): Boolean
- î
def exists(p: (T) â Boolean): Boolean
- î
def filter(p: (T) â Boolean): Array[T]
- î
def filterNot(p: (T) â Boolean): Array[T]
- î
def finalize(): Unit
- î
def find(p: (T) â Boolean): Option[T]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): Array[B]
- î
def flatten[U](implicit asTrav: (T) â collection.Traversable[U], m: ClassTag[U]): Array[U]
- î
def fold[A1 >: A](z: A1)(op: (A1, A1) â A1): A1
- î
def foldLeft[B](z: B)(op: (B, T) â B): B
- î
def foldRight[B](z: B)(op: (T, B) â B): B
- î
def forall(p: (T) â Boolean): Boolean
- î
def foreach(f: (A) â Unit): Unit
- î
final def getClass(): Class[_]
- î
def groupBy[K](f: (T) â K): Map[K, Array[T]]
- î
def grouped(size: Int): collection.Iterator[Array[T]]
- î
def hasDefiniteSize: Boolean
- î
def hashCode(): Int
- î
def head: T
- î
def headOption: Option[T]
- î
def indexOf(elem: T, from: Int): Int
- î
def indexOf(elem: T): Int
- î
def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int
- î
def indexOfSlice[B >: A](that: GenSeq[B]): Int
- î
def indexWhere(p: (T) â Boolean, from: Int): Int
- î
def indexWhere(p: (T) â Boolean): Int
- î
def indices: collection.immutable.Range
- î
def init: Array[T]
- î
def inits: collection.Iterator[Array[T]]
- î
def intersect(that: collection.Seq[T]): Array[T]
- î
def isDefinedAt(idx: Int): Boolean
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
final def isTraversableAgain: Boolean
- î
def iterator: collection.Iterator[T]
- î
def last: T
- î
def lastIndexOf(elem: T, end: Int): Int
- î
def lastIndexOf(elem: T): Int
- î
def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int
- î
def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int
- î
def lastIndexWhere(p: (T) â Boolean, end: Int): Int
- î
def lastIndexWhere(p: (T) â Boolean): Int
- î
def lastOption: Option[T]
- î
def length: Int
- î
def lengthCompare(len: Int): Int
- î
def map[B](f: (A) â B): Array[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 nonEmpty: Boolean
- î
final def notify(): Unit
- î
final def notifyAll(): Unit
- î
def padTo(len: Int, elem: A): Array[A]
- î
def par: ParArray[T]
- î
def partition(p: (T) â Boolean): (Array[T], Array[T])
- î
def patch(from: Int, that: GenSeq[A], replaced: Int): Array[A]
- î
def permutations: collection.Iterator[Array[T]]
- î
def prefixLength(p: (T) â Boolean): Int
- î
def product: A
- î
def reduce[A1 >: A](op: (A1, A1) â A1): A1
- î
def reduceLeft[B >: A](op: (B, T) â B): B
- î
def reduceLeftOption[B >: A](op: (B, T) â B): Option[B]
- î
def reduceOption[A1 >: A](op: (A1, A1) â A1): Option[A1]
- î
def reduceRight[B >: A](op: (T, B) â B): B
- î
def reduceRightOption[B >: A](op: (T, B) â B): Option[B]
- î
def repr: Array[T]
- î
def reverse: Array[T]
- î
def reverseIterator: collection.Iterator[T]
- î
def reverseMap[B](f: (A) â B): Array[B]
- î
def sameElements(that: GenIterable[A]): Boolean
- î
def scan[B >: A, That](z: B)(op: (B, B) â B)(implicit cbf: CanBuildFrom[Array[T], B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, T) â B)(implicit bf: CanBuildFrom[Array[T], B, That]): That
- î
def scanRight[B, That](z: B)(op: (T, B) â B)(implicit bf: CanBuildFrom[Array[T], B, That]): That
- î
def segmentLength(p: (T) â Boolean, from: Int): Int
- î
def seq: collection.mutable.IndexedSeq[T]
- î
def size: Int
- î
def slice(from: Int, until: Int): Array[T]
- î
def sliding(size: Int, step: Int): collection.Iterator[Array[T]]
- î
def sliding(size: Int): collection.Iterator[Array[T]]
- î
def sortBy[B](f: (T) â B)(implicit ord: math.Ordering[B]): Array[T]
- î
def sortWith(lt: (T, T) â Boolean): Array[T]
- î
def sorted[B >: A](implicit ord: math.Ordering[B]): Array[T]
- î
def span(p: (T) â Boolean): (Array[T], Array[T])
- î
def splitAt(n: Int): (Array[T], Array[T])
- î
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: Array[T]
- î
def tails: collection.Iterator[Array[T]]
- î
def take(n: Int): Array[T]
- î
def takeRight(n: Int): Array[T]
- î
def takeWhile(p: (T) â Boolean): Array[T]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[A1 >: A]: Buffer[A1]
- î
def toIndexedSeq: collection.immutable.IndexedSeq[T]
- î
def toIterable: collection.Iterable[T]
- î
def toIterator: collection.Iterator[T]
- î
def toList: List[T]
- î
def toMap[T, U]: Map[T, U]
- î
def toSeq: collection.Seq[T]
- î
def toSet[B >: A]: Set[B]
- î
def toStream: collection.immutable.Stream[T]
- î
def toString(): String
- î
def toTraversable: collection.Traversable[T]
- î
def toVector: Vector[T]
- î
def transpose[U](implicit asArray: (T) â Array[U]): Array[Array[U]]
- î
def union(that: collection.Seq[T]): Array[T]
- î
def unzip[T1, T2](implicit asPair: (T) â (T1, T2), ct1: ClassTag[T1], ct2: ClassTag[T2]): (Array[T1], Array[T2])
- î
def unzip3[T1, T2, T3](implicit asTriple: (T) â (T1, T2, T3), ct1: ClassTag[T1], ct2: ClassTag[T2], ct3: ClassTag[T3]): (Array[T1], Array[T2], Array[T3])
- î
def update(i: Int, x: T): Unit
- î
def updated(index: Int, elem: A): Array[A]
- î
def view(from: Int, until: Int): IndexedSeqView[T, Array[T]]
- î
def view: IndexedSeqView[T, Array[T]]
- î
final def wait(): Unit
- î
final def wait(arg0: Long, arg1: Int): Unit
- î
final def wait(arg0: Long): Unit
- î
def withFilter(p: (T) â Boolean): FilterMonadic[T, Array[T]]
- î
def zip[B](that: GenIterable[B]): Array[(A, B)]
- î
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Array[(A, B)]
- î
def zipWithIndex: Array[(A, Int)]
- î
def â[B](y: B): (Array[T], B)
Deprecated Value Members
- î
def /:[B](z: B)(op: (B, T) â B): B
- î
def :\[B](z: B)(op: (T, B) â B): B
- î
def formatted(fmtstr: String): String
Inherited from java.lang.Cloneable
Inherited from java.io.Serializable
Inherited by implicit conversion genericArrayOps from Array[T] to ArrayOps[T]
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