Skip to content

Commit

Permalink
chore: Regen Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake committed Feb 22, 2023
1 parent daaffb3 commit 23b043e
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions stdlib/pervasives.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,32 @@ Returns:
|----|-----------|
|`Number`|The modulus of its operands|

### Pervasives.**(**)**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
No other changes yet.
</details>

```grain
(**) : (Number, Number) -> Number
```

Computes the exponentiation of the given base and power.

Parameters:

|param|type|description|
|-----|----|-----------|
|`base`|`Number`|The base number|
|`power`|`Number`|The exponent number|

Returns:

|type|description|
|----|-----------|
|`Number`|The base raised to the given power|

### Pervasives.**incr**

<details disabled>
Expand Down
26 changes: 26 additions & 0 deletions stdlib/runtime/numbers.md
Original file line number Diff line number Diff line change
Expand Up @@ -977,3 +977,29 @@ Returns:
|----|-----------|
|`WasmF64`|The result of x * 2^n|

### Numbers.**(**)**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
No other changes yet.
</details>

```grain
(**) : (Number, Number) -> Number
```

Computes the exponentiation of the given base and power.

Parameters:

|param|type|description|
|-----|----|-----------|
|`base`|`Number`|The base number|
|`power`|`Number`|The exponent number|

Returns:

|type|description|
|----|-----------|
|`Number`|The base raised to the given power|

0 comments on commit 23b043e

Please sign in to comment.