Instance Constructors
-
new
SimpleList
(jl: List[T])
-
new
SimpleList
()
-
new
SimpleList
(underlying: List[T])
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
add
(after: Int, x: T): Unit
-
def
add
(x: T): Boolean
-
def
addAll
(index: Int, jc: java.util.Collection[_ <: T]): Boolean
-
def
addAll
(jc: java.util.Collection[_ <: T]): Boolean
-
def
append
(item: T): SimpleList[T]
-
def
asInstanceOf
[T0]
: T0
-
def
canEqual
(arg0: Any): Boolean
-
def
clear
(): Unit
-
def
clone
(): AnyRef
-
def
contains
(x: AnyRef): Boolean
-
def
containsAll
(jc: java.util.Collection[_]): Boolean
-
def
drop
(n: Int): SimpleList[T]
-
def
dropRight
(n: Int): SimpleList[T]
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
get
(pos: Int): T
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
head
(): T
-
def
headOption
(): Option[T]
-
def
indexOf
(obj: AnyRef): Int
-
def
isEmpty
(): Boolean
-
def
isInstanceOf
[T0]
: Boolean
-
def
iterator
(): Iterator[T]
-
def
lastIndexOf
(obj: AnyRef): Int
-
def
listIterator
(pos: Int): ListIterator[T]
-
def
listIterator
(): ListIterator[T]
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
prepend
(item: T): SimpleList[T]
-
def
productArity
: Int
-
def
productElement
(arg0: Int): Any
-
def
productIterator
: Iterator[Any]
-
def
productPrefix
: String
-
def
remove
(obj: AnyRef): Boolean
-
def
remove
(pos: Int): T
-
def
removeAll
(jc: java.util.Collection[_]): Boolean
-
def
retainAll
(jc: java.util.Collection[_]): Boolean
-
-
def
set
(after: Int, x: T): T
-
def
size
(): Int
-
def
subList
(from: Int, to: Int): List[T]
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
-
def
take
(n: Int): SimpleList[T]
-
def
takeRight
(n: Int): SimpleList[T]
-
def
toArray
[X]
(in: Array[X]): Array[X]
-
def
toArray
(): Array[AnyRef]
-
def
toString
(): String
-
val
underlying
: List[T]
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Deprecated Value Members
-
def
productElements
: Iterator[Any]
Inherited from Serializable
Inherited from Serializable
Inherited from Product
Inherited from Equals
Inherited from List[T]
Inherited from Collection[T]
Inherited from Iterable[T]
Inherited from AnyRef
Inherited from Any
An immutable singly linked list that uses the Scala List class as backing store, but is Java-friendly.