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/-init-.html | 14 +++ .../-linked-list/append.html | 14 +++ .../-linked-list/count.html | 14 +++ .../-linked-list/first.html | 14 +++ .../-linked-list/index.html | 126 +++++++++++++++++++++ .../-linked-list/is-empty.html | 14 +++ .../-linked-list/last.html | 14 +++ .../-linked-list/node-at-index.html | 14 +++ .../-linked-list/remove-all.html | 14 +++ .../-linked-list/remove-at-index.html | 14 +++ .../-linked-list/remove-last.html | 14 +++ .../-linked-list/remove-node.html | 14 +++ .../-linked-list/to-string.html | 14 +++ 13 files changed, 294 insertions(+) create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/-init-.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/append.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/count.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/first.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/index.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/is-empty.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/last.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/node-at-index.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/remove-all.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/remove-last.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/remove-node.html create mode 100644 api/pl.treksoft.kvision.utils/-linked-list/to-string.html (limited to 'api/pl.treksoft.kvision.utils/-linked-list') diff --git a/api/pl.treksoft.kvision.utils/-linked-list/-init-.html b/api/pl.treksoft.kvision.utils/-linked-list/-init-.html new file mode 100644 index 00000000..6daf79bf --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/-init-.html @@ -0,0 +1,14 @@ + + + +LinkedList.<init> - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / <init>
+
+

<init>

+ +LinkedList() + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/append.html b/api/pl.treksoft.kvision.utils/-linked-list/append.html new file mode 100644 index 00000000..a9844da8 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/append.html @@ -0,0 +1,14 @@ + + + +LinkedList.append - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / append
+
+

append

+ +fun append(value: T): Unit + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/count.html b/api/pl.treksoft.kvision.utils/-linked-list/count.html new file mode 100644 index 00000000..ea9784e0 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/count.html @@ -0,0 +1,14 @@ + + + +LinkedList.count - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / count
+
+

count

+ +fun count(): Int + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/first.html b/api/pl.treksoft.kvision.utils/-linked-list/first.html new file mode 100644 index 00000000..87bb9e23 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/first.html @@ -0,0 +1,14 @@ + + + +LinkedList.first - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / first
+
+

first

+ +fun first(): Node<T>? + + 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.

+
+ + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/is-empty.html b/api/pl.treksoft.kvision.utils/-linked-list/is-empty.html new file mode 100644 index 00000000..0e0c88b8 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/is-empty.html @@ -0,0 +1,14 @@ + + + +LinkedList.isEmpty - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / isEmpty
+
+

isEmpty

+ +var isEmpty: Boolean + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/last.html b/api/pl.treksoft.kvision.utils/-linked-list/last.html new file mode 100644 index 00000000..920600bd --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/last.html @@ -0,0 +1,14 @@ + + + +LinkedList.last - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / last
+
+

last

+ +fun last(): Node<T>? + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/node-at-index.html b/api/pl.treksoft.kvision.utils/-linked-list/node-at-index.html new file mode 100644 index 00000000..7faf6347 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/node-at-index.html @@ -0,0 +1,14 @@ + + + +LinkedList.nodeAtIndex - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / nodeAtIndex
+
+

nodeAtIndex

+ +fun nodeAtIndex(index: Int): Node<T>? + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/remove-all.html b/api/pl.treksoft.kvision.utils/-linked-list/remove-all.html new file mode 100644 index 00000000..988bf621 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/remove-all.html @@ -0,0 +1,14 @@ + + + +LinkedList.removeAll - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / removeAll
+
+

removeAll

+ +fun removeAll(): Unit + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html b/api/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html new file mode 100644 index 00000000..fd135542 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html @@ -0,0 +1,14 @@ + + + +LinkedList.removeAtIndex - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / removeAtIndex
+
+

removeAtIndex

+ +fun removeAtIndex(index: Int): T? + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/remove-last.html b/api/pl.treksoft.kvision.utils/-linked-list/remove-last.html new file mode 100644 index 00000000..063385a9 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/remove-last.html @@ -0,0 +1,14 @@ + + + +LinkedList.removeLast - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / removeLast
+
+

removeLast

+ +fun removeLast(): T? + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/remove-node.html b/api/pl.treksoft.kvision.utils/-linked-list/remove-node.html new file mode 100644 index 00000000..c53fba65 --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/remove-node.html @@ -0,0 +1,14 @@ + + + +LinkedList.removeNode - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / removeNode
+
+

removeNode

+ +fun removeNode(node: Node<T>): T + + diff --git a/api/pl.treksoft.kvision.utils/-linked-list/to-string.html b/api/pl.treksoft.kvision.utils/-linked-list/to-string.html new file mode 100644 index 00000000..c0357f7a --- /dev/null +++ b/api/pl.treksoft.kvision.utils/-linked-list/to-string.html @@ -0,0 +1,14 @@ + + + +LinkedList.toString - kvision + + + +kvision / pl.treksoft.kvision.utils / LinkedList / toString
+
+

toString

+ +fun toString(): String + + -- cgit