sealed abstract
class
List[T] extends AnyRef
Instance Constructors
-
new
List()
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
&(that: List[T]): List[T]
-
def
++(that: List[T]): List[T]
-
def
-(e: T): List[T]
-
def
--(that: List[T]): List[T]
-
def
:+(t: T): List[T]
-
def
::(t: T): List[T]
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
apply(index: BigInt): T
-
final
def
asInstanceOf[T0]: T0
-
def
chunks(s: BigInt): List[List[T]]
-
def
clone(): AnyRef
-
def
contains(v: T): Boolean
-
def
content: Set[T]
-
def
count(p: (T) ⇒ Boolean): BigInt
-
def
drop(i: BigInt): List[T]
-
def
dropWhile(p: (T) ⇒ Boolean): List[T]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
evenSplit: (List[T], List[T])
-
def
exists(p: (T) ⇒ Boolean): Boolean
-
def
filter(p: (T) ⇒ Boolean): List[T]
-
def
filterNot(p: (T) ⇒ Boolean): List[T]
-
def
finalize(): Unit
-
def
find(p: (T) ⇒ Boolean): Option[T]
-
def
find(e: T): Option[BigInt]
-
def
flatMap[R](f: (T) ⇒ List[R]): List[R]
-
def
foldLeft[R](z: R)(f: (R, T) ⇒ R): R
-
def
foldRight[R](z: R)(f: (T, R) ⇒ R): R
-
def
forall(p: (T) ⇒ Boolean): Boolean
-
final
def
getClass(): Class[_]
-
def
groupBy[R](f: (T) ⇒ R): Map[R, List[T]]
-
def
hashCode(): Int
-
def
head: T
-
def
headOption: Option[T]
-
def
indexWhere(p: (T) ⇒ Boolean): BigInt
-
def
init: List[T]
-
def
insertAt(pos: BigInt, e: T): List[T]
-
def
insertAt(pos: BigInt, l: List[T]): List[T]
-
def
isEmpty: Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
def
last: T
-
def
lastOption: Option[T]
-
def
length: BigInt
-
def
map[R](f: (T) ⇒ R): List[R]
-
final
def
ne(arg0: AnyRef): Boolean
-
def
nonEmpty: Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
padTo(s: BigInt, e: T): List[T]
-
def
partition(p: (T) ⇒ Boolean): (List[T], List[T])
-
def
replace(from: T, to: T): List[T]
-
def
replaceAt(pos: BigInt, l: List[T]): List[T]
-
def
reverse: List[T]
-
def
rotate(s: BigInt): List[T]
-
def
scanLeft[R](z: R)(f: (R, T) ⇒ R): List[R]
-
def
scanRight[R](z: R)(f: (T, R) ⇒ R): List[R]
-
def
size: BigInt
-
def
slice(from: BigInt, to: BigInt): List[T]
-
def
split(seps: List[T]): List[List[T]]
-
def
splitAt(e: T): List[List[T]]
-
def
splitAtIndex(index: BigInt): (List[T], List[T])
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
tail: List[T]
-
def
tailOption: Option[List[T]]
-
def
take(i: BigInt): List[T]
-
def
takeWhile(p: (T) ⇒ Boolean): List[T]
-
def
toSet: Set[T]
-
def
toString(): String
-
def
unique: List[T]
-
def
updated(i: BigInt, y: T): List[T]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
withFilter(p: (T) ⇒ Boolean): List[T]
-
def
zip[B](that: List[B]): List[(T, B)]
Inherited from AnyRef
Inherited from Any