class LList[V] extends AnyRef
- Alphabetic
- By Inheritance
- LList
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new LList()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def delete(pos: Int): LList[V]
- pos
Index between 0 and size - 1.
- returns
The modified list.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(f: (V) => Boolean): Boolean
- f
A predicate.
- returns
True if the predicate holds for at least one element. False otherwise.
- def forall(f: (V) => Boolean): Boolean
- f
A predicate.
- returns
True if the predicate holds for all elements. False, otherwise.
- def get(pos: Int): V
- pos
Index between 0 and size - 1.
- returns
The value that is stored at the given index.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def insert(pos: Int, x: V): LList[V]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[W](f: (V) => W): LList[W]
- f
Function to map over the list.
- returns
The list that results from applying the function on every element.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val size: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def wellFormed(): Boolean
Constraints the list to only contain elements that are in range (i.e.
Constraints the list to only contain elements that are in range (i.e. between 0 and size - 1). Only use this in the logical world, e.g.
lst.wellFormed() =>: ...
- def zip[W](that: LList[W]): LList[Tuple[V, W]]
- W
Type of the elements in the other list.
- that
List to zip with.
- returns
A list combining the elements from both lists in a tuple. The zipped list has the size of the smallest list.
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.