Skip to content

Commit

Permalink
deploy: 593a4f4
Browse files Browse the repository at this point in the history
  • Loading branch information
elkowar committed Jan 14, 2025
1 parent ea6d483 commit 4d3cfb1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions expression_language.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ <h2 id="features"><a class="header" href="#features">Features</a></h2>
<li><code>sin(number)</code>, <code>cos(number)</code>, <code>tan(number)</code>, <code>cot(number)</code>: Calculate the trigonometric value of a given number in <strong>radians</strong></li>
<li><code>min(a, b)</code>, <code>max(a, b)</code>: Get the smaller or bigger number out of two given numbers</li>
<li><code>powi(num, n)</code>, <code>powf(num, n)</code>: Raise number <code>num</code> to power <code>n</code>. <code>powi</code> expects <code>n</code> to be of type <code>i32</code></li>
<li><code>log(num, n)</code>: Calculate the base <code>n</code> logarithm of <code>num</code>. <code>num</code>, <code>n</code> and return type are <code>f64</code></li>
<li><code>degtorad(number)</code>: Converts a number from degrees to radians</li>
<li><code>radtodeg(number)</code>: Converts a number from radians to degrees</li>
<li><code>replace(string, regex, replacement)</code>: Replace matches of a given regex in a string</li>
Expand Down
1 change: 1 addition & 0 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ <h2 id="features"><a class="header" href="#features">Features</a></h2>
<li><code>sin(number)</code>, <code>cos(number)</code>, <code>tan(number)</code>, <code>cot(number)</code>: Calculate the trigonometric value of a given number in <strong>radians</strong></li>
<li><code>min(a, b)</code>, <code>max(a, b)</code>: Get the smaller or bigger number out of two given numbers</li>
<li><code>powi(num, n)</code>, <code>powf(num, n)</code>: Raise number <code>num</code> to power <code>n</code>. <code>powi</code> expects <code>n</code> to be of type <code>i32</code></li>
<li><code>log(num, n)</code>: Calculate the base <code>n</code> logarithm of <code>num</code>. <code>num</code>, <code>n</code> and return type are <code>f64</code></li>
<li><code>degtorad(number)</code>: Converts a number from degrees to radians</li>
<li><code>radtodeg(number)</code>: Converts a number from radians to degrees</li>
<li><code>replace(string, regex, replacement)</code>: Replace matches of a given regex in a string</li>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 4d3cfb1

Please sign in to comment.