kvision / pl.treksoft.kvision.utils / LinkedList

LinkedList

(js) class LinkedList<T>

Constructors

(js)

<init>

LinkedList()

Properties

(js)

isEmpty

var isEmpty: Boolean

Functions

(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