From 8449ff519f3d853ca82c792dccf12d06fb09b627 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Wed, 24 Apr 2019 23:12:48 +0200 Subject: API documentation for KVision 0.0.35 --- .../-linked-list/index.html | 126 +++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/index.html (limited to 'api/pl.treksoft.kvision.utils/-linked-list/index.html') diff --git a/api/pl.treksoft.kvision.utils/-linked-list/index.html b/api/pl.treksoft.kvision.utils/-linked-list/index.html new file mode 100644 index 00000000..f8c5b02c --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/index.html @@ -0,0 +1,126 @@ + + + +LinkedList - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList
+
+

LinkedList

+class LinkedList<T> +

Constructors

+ + + + + + + +
+

<init>

+
+LinkedList()
+

Properties

+ + + + + + + +
+

isEmpty

+
+var isEmpty: Boolean
+

Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

append

+
+fun append(value: T): Unit
+

count

+
+fun count(): Int
+

first

+
+fun first(): Node<T>?
+

last

+
+fun last(): Node<T>?
+

nodeAtIndex

+
+fun nodeAtIndex(index: Int): Node<T>?
+

removeAll

+
+fun removeAll(): Unit
+

removeAtIndex

+
+fun removeAtIndex(index: Int): T?
+

removeLast

+
+fun removeLast(): T?
+

removeNode

+
+fun removeNode(node: Node<T>): T
+

toString

+
+fun toString(): String
+

Extension Functions

+ + + + + + + +
+

createInstance

+
+fun <T> Any?.createInstance(vararg args: dynamic): T +

Helper function for creating JavaScript objects from dynamic constructors.

+
+ + -- cgit