class LinkedList<T>
LinkedList() |
var isEmpty: Boolean |
fun append(value: T): Unit |
|
fun count(): Int |
|
fun first(): Node<T>? |
|
fun last(): Node<T>? |
|
fun nodeAtIndex(index: Int): Node<T>? |
|
fun removeAll(): Unit |
|
fun removeAtIndex(index: Int): T? |
|
fun removeLast(): T? |
|
fun removeNode(node: Node<T>): T |
|
fun toString(): String |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |