Skip to content

Commit 23a1f91

Browse files
author
Dave Herman
committed
added Math.fround
1 parent d638775 commit 23a1f91

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

html/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ <h2 class="no-num no-toc" id=abstract>Abstract</h2>
8383
</li><li>renamed <code>doublish</code> to <a href=#double-2><code>double?</code></a> for symmetry with <a href=#float-2><code>float?</code></a>
8484
</li><li>separate heap access checking into a separate validation section
8585
</li><li>separated load and store types for heap views
86+
</li><li>added <code>Math.fround</code>
8687
</li></ul>
8788
</li><li><strong>12 December 2013</strong>
8889
<ul>
@@ -1909,6 +1910,15 @@ <h2 id=standard-library><span class=secno>9 </span>Standard Library</h2>
19091910
<td><code>Math.imul</code></td>
19101911
<td>(<a href=#int-0><code>int</code></a>, <a href=#int-0><code>int</code></a>) → <a href=#signed-0><code>signed</code></a></td>
19111912
</tr>
1913+
<tr>
1914+
<td><code>Math.fround</code></td>
1915+
<td>
1916+
(<a href=#floatish-0><code>floatish</code></a>) → <a href=#float-1><code>float</code></a><br>
1917+
(<a href=#double-2><code>double?</code></a>) → <a href=#float-1><code>float</code></a><br>
1918+
(<a href=#signed-0><code>signed</code></a>) → <a href=#float-1><code>float</code></a><br>
1919+
(<a href=#unsigned-0><code>unsigned</code></a>) → <a href=#float-1><code>float</code></a>
1920+
</td>
1921+
</tr>
19121922
<tr>
19131923
<td>
19141924
<code>Math.E</code><br>

html/index.src.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ <h3 class="no-num no-toc">Changelog</h2>
8686
<li>renamed <code>doublish</code> to <code>double?</code> for symmetry with <code>float?</code>
8787
<li>separate heap access checking into a separate validation section
8888
<li>separated load and store types for heap views
89+
<li>added <code>Math.fround</code>
8990
</ul>
9091
<li><strong>12 December 2013</strong>
9192
<ul>
@@ -1828,6 +1829,15 @@ <h2>Standard Library</h2>
18281829
<td><code>Math.imul</code></td>
18291830
<td>(<code>int</code>, <code>int</code>) &rarr; <code>signed</code></td>
18301831
</tr>
1832+
<tr>
1833+
<td><code>Math.fround</code></td>
1834+
<td>
1835+
(<code>floatish</code>) &rarr; <code>float</code> &and;<br>
1836+
(<code>double?</code>) &rarr; <code>float</code> &and;<br>
1837+
(<code>signed</code>) &rarr; <code>float</code> &and;<br>
1838+
(<code>unsigned</code>) &rarr; <code>float</code>
1839+
</td>
1840+
</tr>
18311841
<tr>
18321842
<td>
18331843
<code>Math.E</code><br>

0 commit comments

Comments
 (0)