Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Update api
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Dec 6, 2017
1 parent d6e776a commit b272e17
Show file tree
Hide file tree
Showing 362 changed files with 374 additions and 2,210 deletions.
15 changes: 6 additions & 9 deletions api/Array.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@
remains 0.</p></div></div><div class="field "><a name="push"></a><h3><p class="anchor"><code><a href="#push"><span class="identifier">push</span></a> (<span style="white-space:nowrap">x:<span class="type">T</span></span>):<a class="type" title="The standard Int type." href="./Int.html">Int</a></code></p></h3><div class="doc"><p>Adds the element <code>x</code> at the end of <code>this</code> Array and returns the new
length of <code>this</code> Array.</p>
<p>This operation modifies <code>this</code> Array in place.</p>
<p><code>this.<a href="#length">length</a></code> increases by 1.</p></div></div><div class="field "><a name="shift"></a><h3><p class="anchor"><code><a href="#shift"><span class="identifier">shift</span></a> ():<a class="type" title="Null can be useful in two cases." href="./Null.html">Null</a>&lt;<span class="type">T</span>&gt;</code></p></h3><div class="doc"><p>Removes the first element of <code>this</code> Array and returns it.</p>
<p>This operation modifies <code>this</code> Array in place.</p>
<p>If <code>this</code> has at least one element, <code>this</code>.length and the index of each
remaining element is decreased by 1.</p>
<p>If <code>this</code> is the empty Array <code>[]</code>, <code>null</code> is returned and the length
remains 0.</p></div></div><div class="field "><a name="slice"></a><h3><p class="anchor"><code><a href="#slice"><span class="identifier">slice</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="./Int.html">Int</a>,</span> <span style="white-space:nowrap">?end:<a class="type" title="The standard Int type." href="./Int.html">Int</a></span>):<a class="type" title="An Array is a storage for values." href="./Array.html">Array</a>&lt;<span class="type">T</span>&gt;</code></p></h3><div class="doc"><p>Creates a shallow copy of the range of <code>this</code> Array, starting at and
<p><code>this.<a href="#length">length</a></code> increases by 1.</p></div></div><div class="field "><a name="slice"></a><h3><p class="anchor"><code><a href="#slice"><span class="identifier">slice</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="./Int.html">Int</a>,</span> <span style="white-space:nowrap">?end:<a class="type" title="The standard Int type." href="./Int.html">Int</a></span>):<a class="type" title="An Array is a storage for values." href="./Array.html">Array</a>&lt;<span class="type">T</span>&gt;</code></p></h3><div class="doc"><p>Creates a shallow copy of the range of <code>this</code> Array, starting at and
including <code>pos</code>, up to but not including <code>end</code>.</p>
<p>This operation does not modify <code>this</code> Array.</p>
<p>The elements are not copied and retain their identity.</p>
Expand Down Expand Up @@ -65,6 +60,8 @@
<p>The length of the returned Array is equal to the new length of <code>this</code>
Array subtracted from the original length of <code>this</code> Array. In other
words, each element of the original <code>this</code> Array either remains in
<code>this</code> Array or becomes an element of the returned Array.</p></div></div><div class="field "><a name="unshift"></a><h3><p class="anchor"><code><a href="#unshift"><span class="identifier">unshift</span></a> (<span style="white-space:nowrap">x:<span class="type">T</span></span>):<a class="type" title="The standard Void type." href="./Void.html">Void</a></code></p></h3><div class="doc"><p>Adds the element <code>x</code> at the start of <code>this</code> Array.</p>
<p>This operation modifies <code>this</code> Array in place.</p>
<p><code>this.<a href="#length">length</a></code> and the index of each Array element increases by 1.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#000000">&copy; 2017 &nbsp;</p></div></div></footer><script src=".//highlighter.js"></script><link href="./highlighter.css" rel="stylesheet"/></body></html>
<code>this</code> Array or becomes an element of the returned Array.</p></div></div><div class="field "><a name="toString"></a><h3><p class="anchor"><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="./String.html">String</a></code></p></h3><div class="doc"><p>Returns a string representation of <code>this</code> Array.</p>
<p>The result will include the individual elements' String representations
separated by comma. The enclosing [ ] may be missing on some platforms,
use <code><a href="./Std.html#string">Std.string</a>()</code> to get a String representation that is consistent
across platforms.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#000000">&copy; 2017 &nbsp;</p></div></div></footer><script src=".//highlighter.js"></script><link href="./highlighter.css" rel="stylesheet"/></body></html>
2 changes: 1 addition & 1 deletion api/Main.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
display: inline-block;
float: none;
text-shadow: 0 0 0 transparent;
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" style="color:#000000" href="./">API Documentation</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Filter" autocomplete="off"/></div></form></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Main</h1><h4><small><a href="./">no package</a></small></h4> </div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="projectAssets"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectAssets"><span class="identifier">projectAssets</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 10</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectHeight"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectHeight"><span class="identifier">projectHeight</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 540</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectName"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectName"><span class="identifier">projectName</span></a>:<a class="type" title="The basic String class." href="./String.html">String</a><span> = &quot;docs&quot;</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectPackage"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectPackage"><span class="identifier">projectPackage</span></a>:<a class="type" title="The basic String class." href="./String.html">String</a><span> = &quot;arm&quot;</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWidth"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWidth"><span class="identifier">projectWidth</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 960</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMaximize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowMaximize"><span class="identifier">projectWindowMaximize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMinimize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowMinimize"><span class="identifier">projectWindowMinimize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = true</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMode"></a><h3><p class="anchor"><code><span class="label">static</span><a href="./Main.html#projectWindowMode"><span class="identifier">projectWindowMode</span></a>:<a class="type" title="" href="./kha/WindowMode.html">WindowMode</a><span> = kha.WindowMode.Window</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowResize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowResize"><span class="identifier">projectWindowResize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="main"></a><h3><p class="anchor"><code><span class="label">static</span><a href="#main"><span class="identifier">main</span></a> ():<a class="type" title="The standard Void type." href="./Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#000000">&copy; 2017 &nbsp;</p></div></div></footer><script src=".//highlighter.js"></script><link href="./highlighter.css" rel="stylesheet"/></body></html>
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" style="color:#000000" href="./">API Documentation</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Filter" autocomplete="off"/></div></form></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Main</h1><h4><small><a href="./">no package</a></small></h4> </div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="projectAssets"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectAssets"><span class="identifier">projectAssets</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 9</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectHeight"></a><h3><p class="anchor"><code><span class="label">static</span><a href="./Main.html#projectHeight"><span class="identifier">projectHeight</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 540</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectName"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectName"><span class="identifier">projectName</span></a>:<a class="type" title="The basic String class." href="./String.html">String</a><span> = &quot;untitled&quot;</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectPackage"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectPackage"><span class="identifier">projectPackage</span></a>:<a class="type" title="The basic String class." href="./String.html">String</a><span> = &quot;arm&quot;</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectPath"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectPath"><span class="identifier">projectPath</span></a>:<a class="type" title="The basic String class." href="./String.html">String</a><span> = &quot;/Users/lubos/Documents/Armory/test&quot;</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWidth"></a><h3><p class="anchor"><code><span class="label">static</span><a href="./Main.html#projectWidth"><span class="identifier">projectWidth</span></a>:<a class="type" title="The standard Int type." href="./Int.html">Int</a><span> = 960</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMaximize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowMaximize"><span class="identifier">projectWindowMaximize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMinimize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowMinimize"><span class="identifier">projectWindowMinimize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = true</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowMode"></a><h3><p class="anchor"><code><span class="label">static</span><a href="./Main.html#projectWindowMode"><span class="identifier">projectWindowMode</span></a>:<a class="type" title="" href="./kha/WindowMode.html">WindowMode</a><span> = kha.WindowMode.Window</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="projectWindowResize"></a><h3><p class="anchor"><code><span class="label">static</span><span class="label">inline</span><span class="label">read only</span><a href="./Main.html#projectWindowResize"><span class="identifier">projectWindowResize</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="./Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="main"></a><h3><p class="anchor"><code><span class="label">static</span><a href="#main"><span class="identifier">main</span></a> ():<a class="type" title="The standard Void type." href="./Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#000000">&copy; 2017 &nbsp;</p></div></div></footer><script src=".//highlighter.js"></script><link href="./highlighter.css" rel="stylesheet"/></body></html>
Loading

0 comments on commit b272e17

Please sign in to comment.