diff options
Diffstat (limited to 'api1/pl.treksoft.kvision.utils')
95 files changed, 2414 insertions, 0 deletions
diff --git a/api1/pl.treksoft.kvision.utils/-cache/-init-.html b/api1/pl.treksoft.kvision.utils/-cache/-init-.html new file mode 100644 index 00000000..05af599a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-cache/-init-.html @@ -0,0 +1,17 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Cache.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Cache</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.Cache$<init>(kotlin.Int)"></a> +<code><span class="identifier">Cache</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$<init>(kotlin.Int)/capacity">capacity</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a> <span class="symbol">=</span> 50<span class="symbol">)</span></code> +<p>This is a LRU cache that has no performance impact for cache insertions +once the capacity of the cache has been reached. For cache hit, +performance is O(1) and for cache eviction, it is O(1).</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-cache/get.html b/api1/pl.treksoft.kvision.utils/-cache/get.html new file mode 100644 index 00000000..c6cb9816 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-cache/get.html @@ -0,0 +1,16 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Cache.get - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Cache</a> / <a href="./get.html">get</a><br/> +<br/> +<h1>get</h1> +<a name="pl.treksoft.kvision.utils.Cache$get(pl.treksoft.kvision.utils.Cache.K)"></a> +<code><span class="keyword">operator</span> <span class="keyword">fun </span><span class="identifier">get</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$get(pl.treksoft.kvision.utils.Cache.K)/key">key</span><span class="symbol">:</span> <a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#V"><span class="identifier">V</span></a><span class="symbol">?</span></code> +<p><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-hash-map/index.html">HashMap</a> get is O(1). +More info: https://stackoverflow.com/a/4578039/2085356</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-cache/index.html b/api1/pl.treksoft.kvision.utils/-cache/index.html new file mode 100644 index 00000000..15c207b0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-cache/index.html @@ -0,0 +1,78 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Cache - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">Cache</a><br/> +<br/> +<h1>Cache</h1> +<code><span class="keyword">class </span><span class="identifier">Cache</span><span class="symbol"><</span><span class="identifier">K</span><span class="symbol">, </span><span class="identifier">V</span><span class="symbol">></span></code> +<p>This is a LRU cache that has no performance impact for cache insertions +once the capacity of the cache has been reached. For cache hit, +performance is O(1) and for cache eviction, it is O(1).</p> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">Cache</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$<init>(kotlin.Int)/capacity">capacity</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a> <span class="symbol">=</span> 50<span class="symbol">)</span></code> +<p>This is a LRU cache that has no performance impact for cache insertions +once the capacity of the cache has been reached. For cache hit, +performance is O(1) and for cache eviction, it is O(1).</p> +</td> +</tr> +</tbody> +</table> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="get.html">get</a></p> +</td> +<td> +<code><span class="keyword">operator</span> <span class="keyword">fun </span><span class="identifier">get</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$get(pl.treksoft.kvision.utils.Cache.K)/key">key</span><span class="symbol">:</span> <a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#V"><span class="identifier">V</span></a><span class="symbol">?</span></code> +<p><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-hash-map/index.html">HashMap</a> get is O(1). +More info: https://stackoverflow.com/a/4578039/2085356</p> +</td> +</tr> +<tr> +<td> +<p><a href="set.html">set</a></p> +</td> +<td> +<code><span class="keyword">operator</span> <span class="keyword">fun </span><span class="identifier">set</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$set(pl.treksoft.kvision.utils.Cache.K, pl.treksoft.kvision.utils.Cache.V)/key">key</span><span class="symbol">:</span> <a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$set(pl.treksoft.kvision.utils.Cache.K, pl.treksoft.kvision.utils.Cache.V)/value">value</span><span class="symbol">:</span> <a href="index.html#V"><span class="identifier">V</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">?</span></code> +<p><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-hash-map/index.html">HashMap</a> put and remove is O(1). +More info: https://stackoverflow.com/a/4578039/2085356</p> +</td> +</tr> +<tr> +<td> +<p><a href="to-string.html">toString</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">toString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-cache/set.html b/api1/pl.treksoft.kvision.utils/-cache/set.html new file mode 100644 index 00000000..1d3c6baa --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-cache/set.html @@ -0,0 +1,16 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Cache.set - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Cache</a> / <a href="./set.html">set</a><br/> +<br/> +<h1>set</h1> +<a name="pl.treksoft.kvision.utils.Cache$set(pl.treksoft.kvision.utils.Cache.K, pl.treksoft.kvision.utils.Cache.V)"></a> +<code><span class="keyword">operator</span> <span class="keyword">fun </span><span class="identifier">set</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$set(pl.treksoft.kvision.utils.Cache.K, pl.treksoft.kvision.utils.Cache.V)/key">key</span><span class="symbol">:</span> <a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.Cache$set(pl.treksoft.kvision.utils.Cache.K, pl.treksoft.kvision.utils.Cache.V)/value">value</span><span class="symbol">:</span> <a href="index.html#V"><span class="identifier">V</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#K"><span class="identifier">K</span></a><span class="symbol">?</span></code> +<p><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-hash-map/index.html">HashMap</a> put and remove is O(1). +More info: https://stackoverflow.com/a/4578039/2085356</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-cache/to-string.html b/api1/pl.treksoft.kvision.utils/-cache/to-string.html new file mode 100644 index 00000000..cd476dfd --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-cache/to-string.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Cache.toString - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Cache</a> / <a href="./to-string.html">toString</a><br/> +<br/> +<h1>toString</h1> +<a name="pl.treksoft.kvision.utils.Cache$toString()"></a> +<code><span class="keyword">fun </span><span class="identifier">toString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-e-n-t-e-r_-k-e-y.html b/api1/pl.treksoft.kvision.utils/-e-n-t-e-r_-k-e-y.html new file mode 100644 index 00000000..a52032a2 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-e-n-t-e-r_-k-e-y.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ENTER_KEY - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./-e-n-t-e-r_-k-e-y.html">ENTER_KEY</a><br/> +<br/> +<h1>ENTER_KEY</h1> +<a name="pl.treksoft.kvision.utils$ENTER_KEY"></a> +<code><span class="keyword">const</span> <span class="keyword">val </span><span class="identifier">ENTER_KEY</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +<p>Keycode of the ENTER key.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-e-s-c_-k-e-y.html b/api1/pl.treksoft.kvision.utils/-e-s-c_-k-e-y.html new file mode 100644 index 00000000..00763a70 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-e-s-c_-k-e-y.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ESC_KEY - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./-e-s-c_-k-e-y.html">ESC_KEY</a><br/> +<br/> +<h1>ESC_KEY</h1> +<a name="pl.treksoft.kvision.utils$ESC_KEY"></a> +<code><span class="keyword">const</span> <span class="keyword">val </span><span class="identifier">ESC_KEY</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +<p>Keycode of the ESC key.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-j-s-o-n/index.html b/api1/pl.treksoft.kvision.utils/-j-s-o-n/index.html new file mode 100644 index 00000000..7438053a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-j-s-o-n/index.html @@ -0,0 +1,62 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>JSON - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">JSON</a><br/> +<br/> +<h1>JSON</h1> +<code><span class="keyword">object </span><span class="identifier">JSON</span></code> +<p>JSON utility functions</p> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="nonstrict.html">nonstrict</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">nonstrict</span><span class="symbol">: </span><span class="identifier">Json</span></code></td> +</tr> +<tr> +<td> +<p><a href="plain.html">plain</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">plain</span><span class="symbol">: </span><span class="identifier">Json</span></code></td> +</tr> +</tbody> +</table> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="to-obj.html">toObj</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">.</span><span class="identifier">toObj</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code><br/> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">.</span><span class="identifier">toObj</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.JSON$toObj(pl.treksoft.kvision.utils.JSON.toObj.T, kotlinx.serialization.SerializationStrategy((pl.treksoft.kvision.utils.JSON.toObj.T)))/serializer">serializer</span><span class="symbol">:</span> <span class="identifier">SerializationStrategy</span><span class="symbol"><</span><a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> +<p>An extension function to convert Serializable object to JS dynamic object</p> +</td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-j-s-o-n/nonstrict.html b/api1/pl.treksoft.kvision.utils/-j-s-o-n/nonstrict.html new file mode 100644 index 00000000..248c07c4 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-j-s-o-n/nonstrict.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>JSON.nonstrict - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">JSON</a> / <a href="./nonstrict.html">nonstrict</a><br/> +<br/> +<h1>nonstrict</h1> +<a name="pl.treksoft.kvision.utils.JSON$nonstrict"></a> +<code><span class="keyword">val </span><span class="identifier">nonstrict</span><span class="symbol">: </span><span class="identifier">Json</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-j-s-o-n/plain.html b/api1/pl.treksoft.kvision.utils/-j-s-o-n/plain.html new file mode 100644 index 00000000..866b5b98 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-j-s-o-n/plain.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>JSON.plain - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">JSON</a> / <a href="./plain.html">plain</a><br/> +<br/> +<h1>plain</h1> +<a name="pl.treksoft.kvision.utils.JSON$plain"></a> +<code><span class="keyword">val </span><span class="identifier">plain</span><span class="symbol">: </span><span class="identifier">Json</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-j-s-o-n/to-obj.html b/api1/pl.treksoft.kvision.utils/-j-s-o-n/to-obj.html new file mode 100644 index 00000000..13038dd7 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-j-s-o-n/to-obj.html @@ -0,0 +1,21 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>JSON.toObj - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">JSON</a> / <a href="./to-obj.html">toObj</a><br/> +<br/> +<h1>toObj</h1> +<a name="pl.treksoft.kvision.utils.JSON$toObj(pl.treksoft.kvision.utils.JSON.toObj.T)"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="keyword">reified</span> <span class="identifier">T</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">.</span><span class="identifier">toObj</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> +<p>An extension function to convert Serializable object to JS dynamic object</p> +<a name="pl.treksoft.kvision.utils.JSON$toObj(pl.treksoft.kvision.utils.JSON.toObj.T, kotlinx.serialization.SerializationStrategy((pl.treksoft.kvision.utils.JSON.toObj.T)))"></a> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">.</span><span class="identifier">toObj</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.JSON$toObj(pl.treksoft.kvision.utils.JSON.toObj.T, kotlinx.serialization.SerializationStrategy((pl.treksoft.kvision.utils.JSON.toObj.T)))/serializer">serializer</span><span class="symbol">:</span> <span class="identifier">SerializationStrategy</span><span class="symbol"><</span><a href="to-obj.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> +<p>An extension function to convert Serializable object to JS dynamic object</p> +<h3>Parameters</h3> +<p><a name="serializer"></a> +<code>serializer</code> - a serializer for T</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-kv-event/-init-.html b/api1/pl.treksoft.kvision.utils/-kv-event/-init-.html new file mode 100644 index 00000000..f2204522 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-kv-event/-init-.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>KvEvent.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">KvEvent</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.KvEvent$<init>(kotlin.String, org.w3c.dom.CustomEventInit)"></a> +<code><span class="identifier">KvEvent</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.KvEvent$<init>(kotlin.String, org.w3c.dom.CustomEventInit)/type">type</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.KvEvent$<init>(kotlin.String, org.w3c.dom.CustomEventInit)/eventInitDict">eventInitDict</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-custom-event-init/index.html"><span class="identifier">CustomEventInit</span></a><span class="symbol">)</span></code> +<p>Helper class for defining custom events.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-kv-event/detail.html b/api1/pl.treksoft.kvision.utils/-kv-event/detail.html new file mode 100644 index 00000000..a047de16 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-kv-event/detail.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>KvEvent.detail - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">KvEvent</a> / <a href="./detail.html">detail</a><br/> +<br/> +<h1>detail</h1> +<a name="pl.treksoft.kvision.utils.KvEvent$detail"></a> +<code><span class="keyword">val </span><span class="identifier">detail</span><span class="symbol">: </span><span class="identifier">KvJQueryEventObject</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-kv-event/index.html b/api1/pl.treksoft.kvision.utils/-kv-event/index.html new file mode 100644 index 00000000..8ff7ac06 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-kv-event/index.html @@ -0,0 +1,54 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>KvEvent - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">KvEvent</a><br/> +<br/> +<h1>KvEvent</h1> +<code><span class="keyword">class </span><span class="identifier">KvEvent</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-custom-event/index.html"><span class="identifier">CustomEvent</span></a></code> +<p>Helper class for defining custom events.</p> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">KvEvent</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.KvEvent$<init>(kotlin.String, org.w3c.dom.CustomEventInit)/type">type</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.KvEvent$<init>(kotlin.String, org.w3c.dom.CustomEventInit)/eventInitDict">eventInitDict</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-custom-event-init/index.html"><span class="identifier">CustomEventInit</span></a><span class="symbol">)</span></code> +<p>Helper class for defining custom events.</p> +</td> +</tr> +</tbody> +</table> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="detail.html">detail</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">detail</span><span class="symbol">: </span><span class="identifier">KvJQueryEventObject</span></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/-init-.html b/api1/pl.treksoft.kvision.utils/-linked-list/-init-.html new file mode 100644 index 00000000..6daf79bf --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/-init-.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.LinkedList$<init>()"></a> +<code><span class="identifier">LinkedList</span><span class="symbol">(</span><span class="symbol">)</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/append.html b/api1/pl.treksoft.kvision.utils/-linked-list/append.html new file mode 100644 index 00000000..a9844da8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/append.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.append - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./append.html">append</a><br/> +<br/> +<h1>append</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$append(pl.treksoft.kvision.utils.LinkedList.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">append</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$append(pl.treksoft.kvision.utils.LinkedList.T)/value">value</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/count.html b/api1/pl.treksoft.kvision.utils/-linked-list/count.html new file mode 100644 index 00000000..ea9784e0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/count.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.count - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./count.html">count</a><br/> +<br/> +<h1>count</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$count()"></a> +<code><span class="keyword">fun </span><span class="identifier">count</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/first.html b/api1/pl.treksoft.kvision.utils/-linked-list/first.html new file mode 100644 index 00000000..87bb9e23 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/first.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.first - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./first.html">first</a><br/> +<br/> +<h1>first</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$first()"></a> +<code><span class="keyword">fun </span><span class="identifier">first</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/index.html b/api1/pl.treksoft.kvision.utils/-linked-list/index.html new file mode 100644 index 00000000..f8c5b02c --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/index.html @@ -0,0 +1,126 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">LinkedList</a><br/> +<br/> +<h1>LinkedList</h1> +<code><span class="keyword">class </span><span class="identifier">LinkedList</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span></code> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">LinkedList</span><span class="symbol">(</span><span class="symbol">)</span></code></td> +</tr> +</tbody> +</table> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="is-empty.html">isEmpty</a></p> +</td> +<td> +<code><span class="keyword">var </span><span class="identifier">isEmpty</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +</tbody> +</table> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="append.html">append</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">append</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$append(pl.treksoft.kvision.utils.LinkedList.T)/value">value</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="count.html">count</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">count</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="first.html">first</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">first</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="last.html">last</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">last</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="node-at-index.html">nodeAtIndex</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">nodeAtIndex</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$nodeAtIndex(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="remove-all.html">removeAll</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeAll</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="remove-at-index.html">removeAtIndex</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeAtIndex</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$removeAtIndex(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="remove-last.html">removeLast</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeLast</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="remove-node.html">removeNode</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeNode</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$removeNode(pl.treksoft.kvision.utils.Node((pl.treksoft.kvision.utils.LinkedList.T)))/node">node</span><span class="symbol">:</span> <a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="to-string.html">toString</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">toString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/is-empty.html b/api1/pl.treksoft.kvision.utils/-linked-list/is-empty.html new file mode 100644 index 00000000..0e0c88b8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/is-empty.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.isEmpty - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./is-empty.html">isEmpty</a><br/> +<br/> +<h1>isEmpty</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$isEmpty"></a> +<code><span class="keyword">var </span><span class="identifier">isEmpty</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/last.html b/api1/pl.treksoft.kvision.utils/-linked-list/last.html new file mode 100644 index 00000000..920600bd --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/last.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.last - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./last.html">last</a><br/> +<br/> +<h1>last</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$last()"></a> +<code><span class="keyword">fun </span><span class="identifier">last</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/node-at-index.html b/api1/pl.treksoft.kvision.utils/-linked-list/node-at-index.html new file mode 100644 index 00000000..7faf6347 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/node-at-index.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.nodeAtIndex - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./node-at-index.html">nodeAtIndex</a><br/> +<br/> +<h1>nodeAtIndex</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$nodeAtIndex(kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">nodeAtIndex</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$nodeAtIndex(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/remove-all.html b/api1/pl.treksoft.kvision.utils/-linked-list/remove-all.html new file mode 100644 index 00000000..988bf621 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/remove-all.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.removeAll - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./remove-all.html">removeAll</a><br/> +<br/> +<h1>removeAll</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$removeAll()"></a> +<code><span class="keyword">fun </span><span class="identifier">removeAll</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html b/api1/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html new file mode 100644 index 00000000..fd135542 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/remove-at-index.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.removeAtIndex - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./remove-at-index.html">removeAtIndex</a><br/> +<br/> +<h1>removeAtIndex</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$removeAtIndex(kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">removeAtIndex</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$removeAtIndex(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/remove-last.html b/api1/pl.treksoft.kvision.utils/-linked-list/remove-last.html new file mode 100644 index 00000000..063385a9 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/remove-last.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.removeLast - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./remove-last.html">removeLast</a><br/> +<br/> +<h1>removeLast</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$removeLast()"></a> +<code><span class="keyword">fun </span><span class="identifier">removeLast</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/remove-node.html b/api1/pl.treksoft.kvision.utils/-linked-list/remove-node.html new file mode 100644 index 00000000..c53fba65 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/remove-node.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.removeNode - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./remove-node.html">removeNode</a><br/> +<br/> +<h1>removeNode</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$removeNode(pl.treksoft.kvision.utils.Node((pl.treksoft.kvision.utils.LinkedList.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">removeNode</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.LinkedList$removeNode(pl.treksoft.kvision.utils.Node((pl.treksoft.kvision.utils.LinkedList.T)))/node">node</span><span class="symbol">:</span> <a href="../-node/index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-linked-list/to-string.html b/api1/pl.treksoft.kvision.utils/-linked-list/to-string.html new file mode 100644 index 00000000..c0357f7a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-linked-list/to-string.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>LinkedList.toString - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">LinkedList</a> / <a href="./to-string.html">toString</a><br/> +<br/> +<h1>toString</h1> +<a name="pl.treksoft.kvision.utils.LinkedList$toString()"></a> +<code><span class="keyword">fun </span><span class="identifier">toString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-node/-init-.html b/api1/pl.treksoft.kvision.utils/-node/-init-.html new file mode 100644 index 00000000..5ed9a10a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-node/-init-.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Node.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Node</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.Node$<init>(pl.treksoft.kvision.utils.Node.T)"></a> +<code><span class="identifier">Node</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Node$<init>(pl.treksoft.kvision.utils.Node.T)/value">value</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span></code> +<p>Created by gazollajunior on 07/04/16.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-node/index.html b/api1/pl.treksoft.kvision.utils/-node/index.html new file mode 100644 index 00000000..bcd9cbdf --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-node/index.html @@ -0,0 +1,68 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Node - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">Node</a><br/> +<br/> +<h1>Node</h1> +<code><span class="keyword">class </span><span class="identifier">Node</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span></code> +<p>Created by gazollajunior on 07/04/16.</p> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">Node</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.Node$<init>(pl.treksoft.kvision.utils.Node.T)/value">value</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span></code> +<p>Created by gazollajunior on 07/04/16.</p> +</td> +</tr> +</tbody> +</table> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="next.html">next</a></p> +</td> +<td> +<code><span class="keyword">var </span><span class="identifier">next</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="previous.html">previous</a></p> +</td> +<td> +<code><span class="keyword">var </span><span class="identifier">previous</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code></td> +</tr> +<tr> +<td> +<p><a href="value.html">value</a></p> +</td> +<td> +<code><span class="keyword">var </span><span class="identifier">value</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-node/next.html b/api1/pl.treksoft.kvision.utils/-node/next.html new file mode 100644 index 00000000..6714c772 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-node/next.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Node.next - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Node</a> / <a href="./next.html">next</a><br/> +<br/> +<h1>next</h1> +<a name="pl.treksoft.kvision.utils.Node$next"></a> +<code><span class="keyword">var </span><span class="identifier">next</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-node/previous.html b/api1/pl.treksoft.kvision.utils/-node/previous.html new file mode 100644 index 00000000..8fe1f1f9 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-node/previous.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Node.previous - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Node</a> / <a href="./previous.html">previous</a><br/> +<br/> +<h1>previous</h1> +<a name="pl.treksoft.kvision.utils.Node$previous"></a> +<code><span class="keyword">var </span><span class="identifier">previous</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Node</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">?</span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-node/value.html b/api1/pl.treksoft.kvision.utils/-node/value.html new file mode 100644 index 00000000..3fecf28a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-node/value.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Node.value - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Node</a> / <a href="./value.html">value</a><br/> +<br/> +<h1>value</h1> +<a name="pl.treksoft.kvision.utils.Node$value"></a> +<code><span class="keyword">var </span><span class="identifier">value</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-object/-init-.html b/api1/pl.treksoft.kvision.utils/-object/-init-.html new file mode 100644 index 00000000..d4733824 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-object/-init-.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Object.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">Object</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.Object$<init>()"></a> +<code><span class="identifier">Object</span><span class="symbol">(</span><span class="symbol">)</span></code> +<p>JavaScript Object type</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-object/index.html b/api1/pl.treksoft.kvision.utils/-object/index.html new file mode 100644 index 00000000..eda8822d --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-object/index.html @@ -0,0 +1,42 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>Object - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">Object</a><br/> +<br/> +<h1>Object</h1> +<code><span class="keyword">external</span> <span class="keyword">class </span><span class="identifier">Object</span></code> +<p>JavaScript Object type</p> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">Object</span><span class="symbol">(</span><span class="symbol">)</span></code> +<p>JavaScript Object type</p> +</td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/-init-.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/-init-.html new file mode 100644 index 00000000..10267492 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/-init-.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.<init> - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./-init-.html"><init></a><br/> +<br/> +<h1><init></h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$<init>(kotlin.collections.MutableList((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="identifier">ObservableListWrapper</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$<init>(kotlin.collections.MutableList((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/mutableList">mutableList</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span> <span class="symbol">=</span> mutableListOf()<span class="symbol">)</span></code> +<p>Simple observable list implementation.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add-all.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add-all.html new file mode 100644 index 00000000..2561bd1b --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add-all.html @@ -0,0 +1,16 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.addAll - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./add-all.html">addAll</a><br/> +<br/> +<h1>addAll</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">addAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code><br/> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.Int, kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">addAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.Int, kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.Int, kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add.html new file mode 100644 index 00000000..f27df790 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/add.html @@ -0,0 +1,16 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.add - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./add.html">add</a><br/> +<br/> +<h1>add</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$add(pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">add</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code><br/> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$add(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">add</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/clear.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/clear.html new file mode 100644 index 00000000..133083cc --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/clear.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.clear - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./clear.html">clear</a><br/> +<br/> +<h1>clear</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$clear()"></a> +<code><span class="keyword">fun </span><span class="identifier">clear</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains-all.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains-all.html new file mode 100644 index 00000000..0efa9d8f --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains-all.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.containsAll - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./contains-all.html">containsAll</a><br/> +<br/> +<h1>containsAll</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$containsAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">containsAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$containsAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains.html new file mode 100644 index 00000000..9ae02722 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/contains.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.contains - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./contains.html">contains</a><br/> +<br/> +<h1>contains</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$contains(pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">contains</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$contains(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/get.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/get.html new file mode 100644 index 00000000..6366a1a8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/get.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.get - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./get.html">get</a><br/> +<br/> +<h1>get</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$get(kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">get</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$get(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index-of.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index-of.html new file mode 100644 index 00000000..6124cd75 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index-of.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.indexOf - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./index-of.html">indexOf</a><br/> +<br/> +<h1>indexOf</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$indexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">indexOf</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$indexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index.html new file mode 100644 index 00000000..76a51d0d --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/index.html @@ -0,0 +1,204 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">ObservableListWrapper</a><br/> +<br/> +<h1>ObservableListWrapper</h1> +<code><span class="keyword">class </span><span class="identifier">ObservableListWrapper</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">, </span><a href="../-observable-list/index.html"><span class="identifier">ObservableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Simple observable list implementation.</p> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-init-.html"><init></a></p> +</td> +<td> +<code><span class="identifier">ObservableListWrapper</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$<init>(kotlin.collections.MutableList((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/mutableList">mutableList</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span> <span class="symbol">=</span> mutableListOf()<span class="symbol">)</span></code> +<p>Simple observable list implementation.</p> +</td> +</tr> +</tbody> +</table> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="mutable-list.html">mutableList</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">mutableList</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code></td> +</tr> +<tr> +<td> +<p><a href="on-update.html">onUpdate</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">onUpdate</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html"><span class="identifier">MutableCollection</span></a><span class="symbol"><</span><span class="symbol">(</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">></span></code></td> +</tr> +<tr> +<td> +<p><a href="size.html">size</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">size</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code></td> +</tr> +</tbody> +</table> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="add.html">add</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">add</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code><br/> +<code><span class="keyword">fun </span><span class="identifier">add</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$add(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="add-all.html">addAll</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">addAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code><br/> +<code><span class="keyword">fun </span><span class="identifier">addAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.Int, kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$addAll(kotlin.Int, kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="clear.html">clear</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">clear</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="contains.html">contains</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">contains</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$contains(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="contains-all.html">containsAll</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">containsAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$containsAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="get.html">get</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">get</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$get(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="index-of.html">indexOf</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">indexOf</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$indexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="is-empty.html">isEmpty</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">isEmpty</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="iterator.html">iterator</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">iterator</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-iterator/index.html"><span class="identifier">MutableIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code></td> +</tr> +<tr> +<td> +<p><a href="last-index-of.html">lastIndexOf</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">lastIndexOf</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$lastIndexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="list-iterator.html">listIterator</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">listIterator</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list-iterator/index.html"><span class="identifier">MutableListIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code><br/> +<code><span class="keyword">fun </span><span class="identifier">listIterator</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$listIterator(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list-iterator/index.html"><span class="identifier">MutableListIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code></td> +</tr> +<tr> +<td> +<p><a href="remove.html">remove</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">remove</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$remove(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="remove-all.html">removeAll</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$removeAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="remove-at.html">removeAt</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">removeAt</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$removeAt(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="retain-all.html">retainAll</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">retainAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$retainAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="set.html">set</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">set</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$set(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$set(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code></td> +</tr> +<tr> +<td> +<p><a href="sub-list.html">subList</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">subList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$subList(kotlin.Int, kotlin.Int)/fromIndex">fromIndex</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$subList(kotlin.Int, kotlin.Int)/toIndex">toIndex</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +<tr> +<td> +<p><a href="../kotlin.collections.-mutable-list/sync-with-list.html">syncWithList</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="../kotlin.collections.-mutable-list/sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">syncWithList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$syncWithList(kotlin.collections.MutableList((pl.treksoft.kvision.utils.syncWithList.T)), kotlin.collections.List((pl.treksoft.kvision.utils.syncWithList.T)))/list">list</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../kotlin.collections.-mutable-list/sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +<p>Utility extension function to synchronise elements of the MutableList.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/is-empty.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/is-empty.html new file mode 100644 index 00000000..7476ad91 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/is-empty.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.isEmpty - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./is-empty.html">isEmpty</a><br/> +<br/> +<h1>isEmpty</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$isEmpty()"></a> +<code><span class="keyword">fun </span><span class="identifier">isEmpty</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/iterator.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/iterator.html new file mode 100644 index 00000000..6451260c --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/iterator.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.iterator - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./iterator.html">iterator</a><br/> +<br/> +<h1>iterator</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$iterator()"></a> +<code><span class="keyword">fun </span><span class="identifier">iterator</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-iterator/index.html"><span class="identifier">MutableIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/last-index-of.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/last-index-of.html new file mode 100644 index 00000000..65196cd5 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/last-index-of.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.lastIndexOf - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./last-index-of.html">lastIndexOf</a><br/> +<br/> +<h1>lastIndexOf</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$lastIndexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">lastIndexOf</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$lastIndexOf(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/list-iterator.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/list-iterator.html new file mode 100644 index 00000000..3266abd0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/list-iterator.html @@ -0,0 +1,16 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.listIterator - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./list-iterator.html">listIterator</a><br/> +<br/> +<h1>listIterator</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$listIterator()"></a> +<code><span class="keyword">fun </span><span class="identifier">listIterator</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list-iterator/index.html"><span class="identifier">MutableListIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code><br/> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$listIterator(kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">listIterator</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$listIterator(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list-iterator/index.html"><span class="identifier">MutableListIterator</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/mutable-list.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/mutable-list.html new file mode 100644 index 00000000..ed123582 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/mutable-list.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.mutableList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./mutable-list.html">mutableList</a><br/> +<br/> +<h1>mutableList</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$mutableList"></a> +<code><span class="keyword">val </span><span class="identifier">mutableList</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/on-update.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/on-update.html new file mode 100644 index 00000000..67a6abde --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/on-update.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.onUpdate - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./on-update.html">onUpdate</a><br/> +<br/> +<h1>onUpdate</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$onUpdate"></a> +<code><span class="keyword">val </span><span class="identifier">onUpdate</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html"><span class="identifier">MutableCollection</span></a><span class="symbol"><</span><span class="symbol">(</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">></span></code> +<p>Overrides <a href="../-observable-list/on-update.html">ObservableList.onUpdate</a></p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-all.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-all.html new file mode 100644 index 00000000..d1fc8354 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-all.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.removeAll - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./remove-all.html">removeAll</a><br/> +<br/> +<h1>removeAll</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$removeAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">removeAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$removeAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-at.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-at.html new file mode 100644 index 00000000..cc02b15d --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove-at.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.removeAt - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./remove-at.html">removeAt</a><br/> +<br/> +<h1>removeAt</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$removeAt(kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">removeAt</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$removeAt(kotlin.Int)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove.html new file mode 100644 index 00000000..4e89fb6f --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/remove.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.remove - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./remove.html">remove</a><br/> +<br/> +<h1>remove</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$remove(pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">remove</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$remove(pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/retain-all.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/retain-all.html new file mode 100644 index 00000000..7675f11e --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/retain-all.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.retainAll - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./retain-all.html">retainAll</a><br/> +<br/> +<h1>retainAll</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$retainAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))"></a> +<code><span class="keyword">fun </span><span class="identifier">retainAll</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$retainAll(kotlin.collections.Collection((pl.treksoft.kvision.utils.ObservableListWrapper.T)))/elements">elements</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html"><span class="identifier">Collection</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/set.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/set.html new file mode 100644 index 00000000..f0c5f4b5 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/set.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.set - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./set.html">set</a><br/> +<br/> +<h1>set</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$set(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)"></a> +<code><span class="keyword">fun </span><span class="identifier">set</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$set(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/index">index</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$set(kotlin.Int, pl.treksoft.kvision.utils.ObservableListWrapper.T)/element">element</span><span class="symbol">:</span> <a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html#T"><span class="identifier">T</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/size.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/size.html new file mode 100644 index 00000000..92e321d5 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/size.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.size - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./size.html">size</a><br/> +<br/> +<h1>size</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$size"></a> +<code><span class="keyword">val </span><span class="identifier">size</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/sub-list.html b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/sub-list.html new file mode 100644 index 00000000..c4635f9b --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list-wrapper/sub-list.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableListWrapper.subList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableListWrapper</a> / <a href="./sub-list.html">subList</a><br/> +<br/> +<h1>subList</h1> +<a name="pl.treksoft.kvision.utils.ObservableListWrapper$subList(kotlin.Int, kotlin.Int)"></a> +<code><span class="keyword">fun </span><span class="identifier">subList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$subList(kotlin.Int, kotlin.Int)/fromIndex">fromIndex</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">, </span><span class="identifier" id="pl.treksoft.kvision.utils.ObservableListWrapper$subList(kotlin.Int, kotlin.Int)/toIndex">toIndex</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list/index.html b/api1/pl.treksoft.kvision.utils/-observable-list/index.html new file mode 100644 index 00000000..07b47de8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list/index.html @@ -0,0 +1,63 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">ObservableList</a><br/> +<br/> +<h1>ObservableList</h1> +<code><span class="keyword">interface </span><span class="identifier">ObservableList</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Observable list interface.</p> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="on-update.html">onUpdate</a></p> +</td> +<td> +<code><span class="keyword">abstract</span> <span class="keyword">val </span><span class="identifier">onUpdate</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html"><span class="identifier">MutableCollection</span></a><span class="symbol"><</span><span class="symbol">(</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">></span></code></td> +</tr> +</tbody> +</table> +<h3>Extension Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../kotlin.-any/create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="../kotlin.-any/create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +<tr> +<td> +<p><a href="../kotlin.collections.-mutable-list/sync-with-list.html">syncWithList</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="../kotlin.collections.-mutable-list/sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">syncWithList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$syncWithList(kotlin.collections.MutableList((pl.treksoft.kvision.utils.syncWithList.T)), kotlin.collections.List((pl.treksoft.kvision.utils.syncWithList.T)))/list">list</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../kotlin.collections.-mutable-list/sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +<p>Utility extension function to synchronise elements of the MutableList.</p> +</td> +</tr> +</tbody> +</table> +<h3>Inheritors</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="../-observable-list-wrapper/index.html">ObservableListWrapper</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">ObservableListWrapper</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="../-observable-list-wrapper/index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">, </span><a href="./index.html"><span class="identifier">ObservableList</span></a><span class="symbol"><</span><a href="../-observable-list-wrapper/index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Simple observable list implementation.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/-observable-list/on-update.html b/api1/pl.treksoft.kvision.utils/-observable-list/on-update.html new file mode 100644 index 00000000..3ffa447f --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/-observable-list/on-update.html @@ -0,0 +1,14 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ObservableList.onUpdate - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">ObservableList</a> / <a href="./on-update.html">onUpdate</a><br/> +<br/> +<h1>onUpdate</h1> +<a name="pl.treksoft.kvision.utils.ObservableList$onUpdate"></a> +<code><span class="keyword">abstract</span> <span class="keyword">val </span><span class="identifier">onUpdate</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html"><span class="identifier">MutableCollection</span></a><span class="symbol"><</span><span class="symbol">(</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">></span></code> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/auto.html b/api1/pl.treksoft.kvision.utils/auto.html new file mode 100644 index 00000000..272aab6a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/auto.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>auto - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./auto.html">auto</a><br/> +<br/> +<h1>auto</h1> +<a name="pl.treksoft.kvision.utils$auto"></a> +<code><span class="keyword">val </span><span class="identifier">auto</span><span class="symbol">: </span><a href="../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Helper property to describe CSS auto value.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/get-data-with-file-content.html b/api1/pl.treksoft.kvision.utils/get-data-with-file-content.html new file mode 100644 index 00000000..519a27c8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/get-data-with-file-content.html @@ -0,0 +1,19 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>getDataWithFileContent - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./get-data-with-file-content.html">getDataWithFileContent</a><br/> +<br/> +<h1>getDataWithFileContent</h1> +<a name="pl.treksoft.kvision.utils$getDataWithFileContent(pl.treksoft.kvision.form.Form((pl.treksoft.kvision.utils.getDataWithFileContent.K)))"></a> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">K</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="../pl.treksoft.kvision.form/-form/index.html"><span class="identifier">Form</span></a><span class="symbol"><</span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">getDataWithFileContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a></code><br/> +<a name="pl.treksoft.kvision.utils$getDataWithFileContent(pl.treksoft.kvision.form.FormPanel((pl.treksoft.kvision.utils.getDataWithFileContent.K)))"></a> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">K</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="../pl.treksoft.kvision.form/-form-panel/index.html"><span class="identifier">FormPanel</span></a><span class="symbol"><</span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">getDataWithFileContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a></code> +<p>Returns current data model with file content read for all KFiles controls.</p> +<p><strong>Return</strong><br/> +data model</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/index.html b/api1/pl.treksoft.kvision.utils/index.html new file mode 100644 index 00000000..0a14333f --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/index.html @@ -0,0 +1,265 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="./index.html">pl.treksoft.kvision.utils</a><br/> +<br/> +<h2>Package pl.treksoft.kvision.utils</h2> +<p>Interfaces and helper functions for Snabbdom virtual dom implementation and a few useful extension functions.</p> +<h3>Types</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="-cache/index.html">Cache</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">Cache</span><span class="symbol"><</span><span class="identifier">K</span><span class="symbol">, </span><span class="identifier">V</span><span class="symbol">></span></code> +<p>This is a LRU cache that has no performance impact for cache insertions +once the capacity of the cache has been reached. For cache hit, +performance is O(1) and for cache eviction, it is O(1).</p> +</td> +</tr> +<tr> +<td> +<p><a href="-j-s-o-n/index.html">JSON</a></p> +</td> +<td> +<code><span class="keyword">object </span><span class="identifier">JSON</span></code> +<p>JSON utility functions</p> +</td> +</tr> +<tr> +<td> +<p><a href="-kv-event/index.html">KvEvent</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">KvEvent</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-custom-event/index.html"><span class="identifier">CustomEvent</span></a></code> +<p>Helper class for defining custom events.</p> +</td> +</tr> +<tr> +<td> +<p><a href="-linked-list/index.html">LinkedList</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">LinkedList</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span></code></td> +</tr> +<tr> +<td> +<p><a href="-node/index.html">Node</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">Node</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span></code> +<p>Created by gazollajunior on 07/04/16.</p> +</td> +</tr> +<tr> +<td> +<p><a href="-object/index.html">Object</a></p> +</td> +<td> +<code><span class="keyword">external</span> <span class="keyword">class </span><span class="identifier">Object</span></code> +<p>JavaScript Object type</p> +</td> +</tr> +<tr> +<td> +<p><a href="-observable-list/index.html">ObservableList</a></p> +</td> +<td> +<code><span class="keyword">interface </span><span class="identifier">ObservableList</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="-observable-list/index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Observable list interface.</p> +</td> +</tr> +<tr> +<td> +<p><a href="-observable-list-wrapper/index.html">ObservableListWrapper</a></p> +</td> +<td> +<code><span class="keyword">class </span><span class="identifier">ObservableListWrapper</span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="-observable-list-wrapper/index.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">, </span><a href="-observable-list/index.html"><span class="identifier">ObservableList</span></a><span class="symbol"><</span><a href="-observable-list-wrapper/index.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Simple observable list implementation.</p> +</td> +</tr> +</tbody> +</table> +<h3>Extensions for External Classes</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="kotlin.-any/index.html">kotlin.Any</a></p> +</td> +<td> +</td> +</tr> +<tr> +<td> +<p><a href="kotlin.collections.-mutable-list/index.html">kotlin.collections.MutableList</a></p> +</td> +<td> +</td> +</tr> +<tr> +<td> +<p><a href="kotlin.-int/index.html">kotlin.Int</a></p> +</td> +<td> +</td> +</tr> +<tr> +<td> +<p><a href="kotlin.-number/index.html">kotlin.Number</a></p> +</td> +<td> +</td> +</tr> +<tr> +<td> +<p><a href="kotlin.-pair/index.html">kotlin.Pair</a></p> +</td> +<td> +</td> +</tr> +<tr> +<td> +<p><a href="org.w3c.files.-file/index.html">org.w3c.files.File</a></p> +</td> +<td> +</td> +</tr> +</tbody> +</table> +<h3>Properties</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="auto.html">auto</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">auto</span><span class="symbol">: </span><a href="../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Helper property to describe CSS auto value.</p> +</td> +</tr> +<tr> +<td> +<p><a href="-e-n-t-e-r_-k-e-y.html">ENTER_KEY</a></p> +</td> +<td> +<code><span class="keyword">const</span> <span class="keyword">val </span><span class="identifier">ENTER_KEY</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +<p>Keycode of the ENTER key.</p> +</td> +</tr> +<tr> +<td> +<p><a href="-e-s-c_-k-e-y.html">ESC_KEY</a></p> +</td> +<td> +<code><span class="keyword">const</span> <span class="keyword">val </span><span class="identifier">ESC_KEY</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a></code> +<p>Keycode of the ESC key.</p> +</td> +</tr> +<tr> +<td> +<p><a href="normal.html">normal</a></p> +</td> +<td> +<code><span class="keyword">val </span><span class="identifier">normal</span><span class="symbol">: </span><a href="../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Helper property to describe CSS normal value.</p> +</td> +</tr> +</tbody> +</table> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="get-data-with-file-content.html">getDataWithFileContent</a></p> +</td> +<td> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">K</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="../pl.treksoft.kvision.form/-form/index.html"><span class="identifier">Form</span></a><span class="symbol"><</span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">getDataWithFileContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a></code><br/> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">K</span> <span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">></span> <a href="../pl.treksoft.kvision.form/-form-panel/index.html"><span class="identifier">FormPanel</span></a><span class="symbol"><</span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">getDataWithFileContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="get-data-with-file-content.html#K"><span class="identifier">K</span></a></code> +<p>Returns current data model with file content read for all KFiles controls.</p> +</td> +</tr> +<tr> +<td> +<p><a href="is-i-e11.html">isIE11</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">isIE11</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +<p>Utility function to detect Internet Explorer 11.</p> +</td> +</tr> +<tr> +<td> +<p><a href="obj.html">obj</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">obj</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$obj(kotlin.Function1((kotlin.Any, kotlin.Unit)))/init">init</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">.</span><span class="symbol">(</span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> +<p>Helper function for creating JavaScript objects.</p> +</td> +</tr> +<tr> +<td> +<p><a href="observable-list-of.html">observableListOf</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="identifier">observableListOf</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$observableListOf(kotlin.Array((pl.treksoft.kvision.utils.observableListOf.T)))/items">items</span><span class="symbol">:</span> <a href="observable-list-of.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="-observable-list-wrapper/index.html"><span class="identifier">ObservableListWrapper</span></a><span class="symbol"><</span><a href="observable-list-of.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Creates an instance of ObservableList</p> +</td> +</tr> +<tr> +<td> +<p><a href="sn-attrs.html">snAttrs</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">snAttrs</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snAttrs(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Attrs</span></code> +<p>Helper function for creating attributes parameters for Snabbdom.</p> +</td> +</tr> +<tr> +<td> +<p><a href="sn-classes.html">snClasses</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">snClasses</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snClasses(kotlin.collections.List((kotlin.Pair((kotlin.String, kotlin.Boolean)))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-bool-pair.html"><span class="identifier">StringBoolPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Classes</span></code> +<p>Helper function for creating classes parameters for Snabbdom.</p> +</td> +</tr> +<tr> +<td> +<p><a href="sn-opt.html">snOpt</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">snOpt</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snOpt(kotlin.Function1((com.github.snabbdom.VNodeData, kotlin.Unit)))/block">block</span><span class="symbol">:</span> <span class="identifier">VNodeData</span><span class="symbol">.</span><span class="symbol">(</span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">VNodeData</span></code> +<p>Helper function for creating object parameters for Snabbdom.</p> +</td> +</tr> +<tr> +<td> +<p><a href="sn-props.html">snProps</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">snProps</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snProps(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Props</span></code> +<p>Helper function for creating properties parameters for Snabbdom.</p> +</td> +</tr> +<tr> +<td> +<p><a href="sn-style.html">snStyle</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="identifier">snStyle</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snStyle(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">VNodeStyle</span></code> +<p>Helper function for creating style parameters for Snabbdom.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/is-i-e11.html b/api1/pl.treksoft.kvision.utils/is-i-e11.html new file mode 100644 index 00000000..5f9a4d91 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/is-i-e11.html @@ -0,0 +1,17 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>isIE11 - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./is-i-e11.html">isIE11</a><br/> +<br/> +<h1>isIE11</h1> +<a name="pl.treksoft.kvision.utils$isIE11()"></a> +<code><span class="keyword">fun </span><span class="identifier">isIE11</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> +<p>Utility function to detect Internet Explorer 11.</p> +<p><strong>Return</strong><br/> +true if the current browser is IE11</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-any/create-instance.html b/api1/pl.treksoft.kvision.utils/kotlin.-any/create-instance.html new file mode 100644 index 00000000..f9118a2d --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-any/create-instance.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>createInstance - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Any</a> / <a href="./create-instance.html">createInstance</a><br/> +<br/> +<h1>createInstance</h1> +<a name="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="symbol"><</span><span class="keyword">reified</span> <span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-any/index.html b/api1/pl.treksoft.kvision.utils/kotlin.-any/index.html new file mode 100644 index 00000000..ea1e1ca1 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-any/index.html @@ -0,0 +1,25 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.kotlin.Any - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">kotlin.Any</a><br/> +<br/> +<h3>Extensions for kotlin.Any</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="create-instance.html">createInstance</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html"><span class="identifier">Any</span></a><span class="symbol">?</span><span class="symbol">.</span><span class="identifier">createInstance</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$createInstance(kotlin.Any, kotlin.Array((kotlin.Any)))/args">args</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">)</span><span class="symbol">: </span><a href="create-instance.html#T"><span class="identifier">T</span></a></code> +<p>Helper function for creating JavaScript objects from dynamic constructors.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-int/index.html b/api1/pl.treksoft.kvision.utils/kotlin.-int/index.html new file mode 100644 index 00000000..264af1d0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-int/index.html @@ -0,0 +1,43 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.kotlin.Int - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">kotlin.Int</a><br/> +<br/> +<h3>Extensions for kotlin.Int</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="pt.html">pt</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">pt</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS pt units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="px.html">px</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">px</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS px units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="to-hex-string.html">toHexString</a></p> +</td> +<td> +<code><span class="keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">toHexString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Extension function to convert Int to hex format.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-int/pt.html b/api1/pl.treksoft.kvision.utils/kotlin.-int/pt.html new file mode 100644 index 00000000..9792407a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-int/pt.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pt - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Int</a> / <a href="./pt.html">pt</a><br/> +<br/> +<h1>pt</h1> +<a name="pl.treksoft.kvision.utils$pt#kotlin.Int"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">pt</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS pt units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-int/px.html b/api1/pl.treksoft.kvision.utils/kotlin.-int/px.html new file mode 100644 index 00000000..4f43e678 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-int/px.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>px - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Int</a> / <a href="./px.html">px</a><br/> +<br/> +<h1>px</h1> +<a name="pl.treksoft.kvision.utils$px#kotlin.Int"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">px</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS px units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-int/to-hex-string.html b/api1/pl.treksoft.kvision.utils/kotlin.-int/to-hex-string.html new file mode 100644 index 00000000..5456861b --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-int/to-hex-string.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>toHexString - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Int</a> / <a href="./to-hex-string.html">toHexString</a><br/> +<br/> +<h1>toHexString</h1> +<a name="pl.treksoft.kvision.utils$toHexString(kotlin.Int)"></a> +<code><span class="keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html"><span class="identifier">Int</span></a><span class="symbol">.</span><span class="identifier">toHexString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Extension function to convert Int to hex format.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/ch.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/ch.html new file mode 100644 index 00000000..e0a954f0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/ch.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>ch - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./ch.html">ch</a><br/> +<br/> +<h1>ch</h1> +<a name="pl.treksoft.kvision.utils$ch#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">ch</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS ch units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/cm.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/cm.html new file mode 100644 index 00000000..440899aa --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/cm.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>cm - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./cm.html">cm</a><br/> +<br/> +<h1>cm</h1> +<a name="pl.treksoft.kvision.utils$cm#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">cm</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS cm units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/em.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/em.html new file mode 100644 index 00000000..97ecf4a5 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/em.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>em - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./em.html">em</a><br/> +<br/> +<h1>em</h1> +<a name="pl.treksoft.kvision.utils$em#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">em</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS em units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/in.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/in.html new file mode 100644 index 00000000..1aa3e16c --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/in.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>in - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./in.html">in</a><br/> +<br/> +<h1>in</h1> +<a name="pl.treksoft.kvision.utils$in#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">in</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS in units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/index.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/index.html new file mode 100644 index 00000000..9ba03355 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/index.html @@ -0,0 +1,124 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.kotlin.Number - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">kotlin.Number</a><br/> +<br/> +<h3>Extensions for kotlin.Number</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="ch.html">ch</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">ch</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS ch units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="cm.html">cm</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">cm</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS cm units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="em.html">em</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">em</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS em units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="in.html">in</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">in</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS in units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="mm.html">mm</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">mm</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS mm units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="pc.html">pc</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">pc</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS pc units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="perc.html">perc</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">perc</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS percent units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="rem.html">rem</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">rem</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS rem units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="vh.html">vh</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vh</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vh units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="vmax.html">vmax</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vmax</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vmax units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="vmin.html">vmin</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vmin</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vmin units.</p> +</td> +</tr> +<tr> +<td> +<p><a href="vw.html">vw</a></p> +</td> +<td> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vw</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vw units.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/mm.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/mm.html new file mode 100644 index 00000000..8ad7f8f1 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/mm.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>mm - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./mm.html">mm</a><br/> +<br/> +<h1>mm</h1> +<a name="pl.treksoft.kvision.utils$mm#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">mm</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS mm units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/pc.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/pc.html new file mode 100644 index 00000000..f7cb73a7 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/pc.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pc - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./pc.html">pc</a><br/> +<br/> +<h1>pc</h1> +<a name="pl.treksoft.kvision.utils$pc#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">pc</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS pc units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/perc.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/perc.html new file mode 100644 index 00000000..91914ac2 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/perc.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>perc - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./perc.html">perc</a><br/> +<br/> +<h1>perc</h1> +<a name="pl.treksoft.kvision.utils$perc#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">perc</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS percent units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/rem.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/rem.html new file mode 100644 index 00000000..64ab6166 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/rem.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>rem - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./rem.html">rem</a><br/> +<br/> +<h1>rem</h1> +<a name="pl.treksoft.kvision.utils$rem#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">rem</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS rem units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/vh.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/vh.html new file mode 100644 index 00000000..bebecf17 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/vh.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>vh - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./vh.html">vh</a><br/> +<br/> +<h1>vh</h1> +<a name="pl.treksoft.kvision.utils$vh#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vh</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vh units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/vmax.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/vmax.html new file mode 100644 index 00000000..d60b95f4 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/vmax.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>vmax - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./vmax.html">vmax</a><br/> +<br/> +<h1>vmax</h1> +<a name="pl.treksoft.kvision.utils$vmax#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vmax</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vmax units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/vmin.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/vmin.html new file mode 100644 index 00000000..104a0cde --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/vmin.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>vmin - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./vmin.html">vmin</a><br/> +<br/> +<h1>vmin</h1> +<a name="pl.treksoft.kvision.utils$vmin#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vmin</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vmin units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-number/vw.html b/api1/pl.treksoft.kvision.utils/kotlin.-number/vw.html new file mode 100644 index 00000000..3f3401be --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-number/vw.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>vw - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Number</a> / <a href="./vw.html">vw</a><br/> +<br/> +<h1>vw</h1> +<a name="pl.treksoft.kvision.utils$vw#kotlin.Number"></a> +<code><span class="keyword">val </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-number/index.html"><span class="identifier">Number</span></a><span class="symbol">.</span><span class="identifier">vw</span><span class="symbol">: </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Extension property to convert Int to CSS vw units.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-pair/as-string.html b/api1/pl.treksoft.kvision.utils/kotlin.-pair/as-string.html new file mode 100644 index 00000000..00f2c5d8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-pair/as-string.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>asString - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.Pair</a> / <a href="./as-string.html">asString</a><br/> +<br/> +<h1>asString</h1> +<a name="pl.treksoft.kvision.utils$asString(kotlin.Pair((kotlin.Number, pl.treksoft.kvision.core.UNIT)))"></a> +<code><span class="keyword">fun </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a><span class="symbol">.</span><span class="identifier">asString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Extension function to convert CssSize to String.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.-pair/index.html b/api1/pl.treksoft.kvision.utils/kotlin.-pair/index.html new file mode 100644 index 00000000..8113974a --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.-pair/index.html @@ -0,0 +1,25 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.kotlin.Pair - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">kotlin.Pair</a><br/> +<br/> +<h3>Extensions for kotlin.Pair</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="as-string.html">asString</a></p> +</td> +<td> +<code><span class="keyword">fun </span><a href="../../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a><span class="symbol">.</span><span class="identifier">asString</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Extension function to convert CssSize to String.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/index.html b/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/index.html new file mode 100644 index 00000000..2dffc0c4 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/index.html @@ -0,0 +1,25 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.kotlin.collections.MutableList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">kotlin.collections.MutableList</a><br/> +<br/> +<h3>Extensions for kotlin.collections.MutableList</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="sync-with-list.html">syncWithList</a></p> +</td> +<td> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">syncWithList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$syncWithList(kotlin.collections.MutableList((pl.treksoft.kvision.utils.syncWithList.T)), kotlin.collections.List((pl.treksoft.kvision.utils.syncWithList.T)))/list">list</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +<p>Utility extension function to synchronise elements of the MutableList.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/sync-with-list.html b/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/sync-with-list.html new file mode 100644 index 00000000..d7e76c1e --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/kotlin.collections.-mutable-list/sync-with-list.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>syncWithList - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">kotlin.collections.MutableList</a> / <a href="./sync-with-list.html">syncWithList</a><br/> +<br/> +<h1>syncWithList</h1> +<a name="pl.treksoft.kvision.utils$syncWithList(kotlin.collections.MutableList((pl.treksoft.kvision.utils.syncWithList.T)), kotlin.collections.List((pl.treksoft.kvision.utils.syncWithList.T)))"></a> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html"><span class="identifier">MutableList</span></a><span class="symbol"><</span><a href="sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">.</span><span class="identifier">syncWithList</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$syncWithList(kotlin.collections.MutableList((pl.treksoft.kvision.utils.syncWithList.T)), kotlin.collections.List((pl.treksoft.kvision.utils.syncWithList.T)))/list">list</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="sync-with-list.html#T"><span class="identifier">T</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code> +<p>Utility extension function to synchronise elements of the MutableList.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/normal.html b/api1/pl.treksoft.kvision.utils/normal.html new file mode 100644 index 00000000..3c1b1dca --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/normal.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>normal - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./normal.html">normal</a><br/> +<br/> +<h1>normal</h1> +<a name="pl.treksoft.kvision.utils$normal"></a> +<code><span class="keyword">val </span><span class="identifier">normal</span><span class="symbol">: </span><a href="../pl.treksoft.kvision.core/-css-size.html"><span class="identifier">CssSize</span></a></code> +<p>Helper property to describe CSS normal value.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/obj.html b/api1/pl.treksoft.kvision.utils/obj.html new file mode 100644 index 00000000..14faad1d --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/obj.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>obj - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./obj.html">obj</a><br/> +<br/> +<h1>obj</h1> +<a name="pl.treksoft.kvision.utils$obj(kotlin.Function1((kotlin.Any, kotlin.Unit)))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">obj</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$obj(kotlin.Function1((kotlin.Any, kotlin.Unit)))/init">init</span><span class="symbol">:</span> <span class="keyword">dynamic</span><span class="symbol">.</span><span class="symbol">(</span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> +<p>Helper function for creating JavaScript objects.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/observable-list-of.html b/api1/pl.treksoft.kvision.utils/observable-list-of.html new file mode 100644 index 00000000..299f72f0 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/observable-list-of.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>observableListOf - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./observable-list-of.html">observableListOf</a><br/> +<br/> +<h1>observableListOf</h1> +<a name="pl.treksoft.kvision.utils$observableListOf(kotlin.Array((pl.treksoft.kvision.utils.observableListOf.T)))"></a> +<code><span class="keyword">fun </span><span class="symbol"><</span><span class="identifier">T</span><span class="symbol">></span> <span class="identifier">observableListOf</span><span class="symbol">(</span><span class="keyword">vararg</span> <span class="identifier" id="pl.treksoft.kvision.utils$observableListOf(kotlin.Array((pl.treksoft.kvision.utils.observableListOf.T)))/items">items</span><span class="symbol">:</span> <a href="observable-list-of.html#T"><span class="identifier">T</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="-observable-list-wrapper/index.html"><span class="identifier">ObservableListWrapper</span></a><span class="symbol"><</span><a href="observable-list-of.html#T"><span class="identifier">T</span></a><span class="symbol">></span></code> +<p>Creates an instance of ObservableList</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/get-content.html b/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/get-content.html new file mode 100644 index 00000000..4a8b191b --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/get-content.html @@ -0,0 +1,17 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>getContent - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="index.html">org.w3c.files.File</a> / <a href="./get-content.html">getContent</a><br/> +<br/> +<h1>getContent</h1> +<a name="pl.treksoft.kvision.utils$getContent(org.w3c.files.File)"></a> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.files/-file/index.html"><span class="identifier">File</span></a><span class="symbol">.</span><span class="identifier">getContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Suspending extension function to get file content.</p> +<p><strong>Return</strong><br/> +file content</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/index.html b/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/index.html new file mode 100644 index 00000000..4a566d14 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/org.w3c.files.-file/index.html @@ -0,0 +1,25 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>pl.treksoft.kvision.utils.org.w3c.files.File - kvision</title> +<link rel="stylesheet" href="../../../style.css"> +</HEAD> +<BODY> +<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.utils</a> / <a href="./index.html">org.w3c.files.File</a><br/> +<br/> +<h3>Extensions for org.w3c.files.File</h3> +<table> +<tbody> +<tr> +<td> +<p><a href="get-content.html">getContent</a></p> +</td> +<td> +<code><span class="keyword">suspend</span> <span class="keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.files/-file/index.html"><span class="identifier">File</span></a><span class="symbol">.</span><span class="identifier">getContent</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a></code> +<p>Suspending extension function to get file content.</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/sn-attrs.html b/api1/pl.treksoft.kvision.utils/sn-attrs.html new file mode 100644 index 00000000..237573b8 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/sn-attrs.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>snAttrs - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./sn-attrs.html">snAttrs</a><br/> +<br/> +<h1>snAttrs</h1> +<a name="pl.treksoft.kvision.utils$snAttrs(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">snAttrs</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snAttrs(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Attrs</span></code> +<p>Helper function for creating attributes parameters for Snabbdom.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/sn-classes.html b/api1/pl.treksoft.kvision.utils/sn-classes.html new file mode 100644 index 00000000..3fa4ba54 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/sn-classes.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>snClasses - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./sn-classes.html">snClasses</a><br/> +<br/> +<h1>snClasses</h1> +<a name="pl.treksoft.kvision.utils$snClasses(kotlin.collections.List((kotlin.Pair((kotlin.String, kotlin.Boolean)))))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">snClasses</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snClasses(kotlin.collections.List((kotlin.Pair((kotlin.String, kotlin.Boolean)))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-bool-pair.html"><span class="identifier">StringBoolPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Classes</span></code> +<p>Helper function for creating classes parameters for Snabbdom.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/sn-opt.html b/api1/pl.treksoft.kvision.utils/sn-opt.html new file mode 100644 index 00000000..f9ae5dbc --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/sn-opt.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>snOpt - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./sn-opt.html">snOpt</a><br/> +<br/> +<h1>snOpt</h1> +<a name="pl.treksoft.kvision.utils$snOpt(kotlin.Function1((com.github.snabbdom.VNodeData, kotlin.Unit)))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">snOpt</span><span class="symbol">(</span><span class="keyword">noinline</span> <span class="identifier" id="pl.treksoft.kvision.utils$snOpt(kotlin.Function1((com.github.snabbdom.VNodeData, kotlin.Unit)))/block">block</span><span class="symbol">:</span> <span class="identifier">VNodeData</span><span class="symbol">.</span><span class="symbol">(</span><span class="symbol">)</span> <span class="symbol">-></span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">VNodeData</span></code> +<p>Helper function for creating object parameters for Snabbdom.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/sn-props.html b/api1/pl.treksoft.kvision.utils/sn-props.html new file mode 100644 index 00000000..43103ee4 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/sn-props.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>snProps - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./sn-props.html">snProps</a><br/> +<br/> +<h1>snProps</h1> +<a name="pl.treksoft.kvision.utils$snProps(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">snProps</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snProps(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Props</span></code> +<p>Helper function for creating properties parameters for Snabbdom.</p> +</BODY> +</HTML> diff --git a/api1/pl.treksoft.kvision.utils/sn-style.html b/api1/pl.treksoft.kvision.utils/sn-style.html new file mode 100644 index 00000000..6182fe65 --- /dev/null +++ b/api1/pl.treksoft.kvision.utils/sn-style.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +<title>snStyle - kvision</title> +<link rel="stylesheet" href="../../style.css"> +</HEAD> +<BODY> +<a href="../index.html">kvision</a> / <a href="index.html">pl.treksoft.kvision.utils</a> / <a href="./sn-style.html">snStyle</a><br/> +<br/> +<h1>snStyle</h1> +<a name="pl.treksoft.kvision.utils$snStyle(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))"></a> +<code><span class="keyword">inline</span> <span class="keyword">fun </span><span class="identifier">snStyle</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.utils$snStyle(kotlin.collections.List((kotlin.Pair((kotlin.String, )))))/pairs">pairs</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html"><span class="identifier">List</span></a><span class="symbol"><</span><a href="../pl.treksoft.kvision.core/-string-pair.html"><span class="identifier">StringPair</span></a><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">VNodeStyle</span></code> +<p>Helper function for creating style parameters for Snabbdom.</p> +</BODY> +</HTML> |