class LinkedList<T>
(js)
<init> |
LinkedList() |
(js)
isEmpty |
var isEmpty: Boolean |
(js)
append |
fun append(value: T): Unit |
(js)
count |
fun count(): Int |
(js)
first |
fun first(): Node<T>? |
(js)
last |
fun last(): Node<T>? |
(js)
nodeAtIndex |
fun nodeAtIndex(index: Int): Node<T>? |
(js)
removeAll |
fun removeAll(): Unit |
(js)
removeAtIndex |
fun removeAtIndex(index: Int): T? |
(js)
removeLast |
fun removeLast(): T? |
(js)
removeNode |
fun removeNode(node: Node<T>): T |
(js)
toString |
fun toString(): String |