Skip to content

Commit

Permalink
Docs generated from: feat: Add Float.round (#1301)
Browse files Browse the repository at this point in the history
Just a wrapper around the c std function.
  • Loading branch information
carp-lang committed Aug 23, 2021
1 parent e7ab15e commit 86062df
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
19 changes: 19 additions & 0 deletions core/Float.html
Original file line number Diff line number Diff line change
Expand Up @@ -1078,6 +1078,25 @@ <h3 id="random-between">

</p>
</div>
<div class="binder">
<a class="anchor" href="#round">
<h3 id="round">
round
</h3>
</a>
<div class="description">
external
</div>
<p class="sig">
(Fn [Float] Int)
</p>
<span>

</span>
<p class="doc">

</p>
</div>
<div class="binder">
<a class="anchor" href="#sin">
<h3 id="sin">
Expand Down
21 changes: 21 additions & 0 deletions core/Globals in ControlMacros.carp.html
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,27 @@ <h3 id="forever-do">

</p>
</div>
<div class="binder">
<a class="anchor" href="#ignore-do">
<h3 id="ignore-do">
ignore-do
</h3>
</a>
<div class="description">
macro
</div>
<p class="sig">
Macro
</p>
<pre class="args">
(ignore-do :rest forms)
</pre>
<p class="doc">
<p>Wraps side-effecting <code>forms</code> in a <code>do</code>, ignoring all of their results.
In other words, executes <code>forms</code> only for their side effects.</p>

</p>
</div>
<div class="binder">
<a class="anchor" href="#let-do">
<h3 id="let-do">
Expand Down
20 changes: 20 additions & 0 deletions core/Globals in Macros.carp.html
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,26 @@ <h3 id="ignore">

</p>
</div>
<div class="binder">
<a class="anchor" href="#ignore*">
<h3 id="ignore*">
ignore*
</h3>
</a>
<div class="description">
macro
</div>
<p class="sig">
Macro
</p>
<pre class="args">
(ignore* :rest forms)
</pre>
<p class="doc">
<p>Wraps all forms passed as an argument in a call to <a href="#ignore"><code>ignore</code></a>.</p>

</p>
</div>
<div class="binder">
<a class="anchor" href="#implements-all">
<h3 id="implements-all">
Expand Down

0 comments on commit 86062df

Please sign in to comment.