Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
easyextensions MathExtensions
BigMakCode edited this page Aug 5, 2024
·
1 revision
Numeric fast extensions with basic Math methods.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions
EasyExtensions.MathExtensions[[MathExtensions]]
end
| Returns | Name |
|---|---|
int | Pow(int number, int exponent)Pow specified foundation to exponent. |
Numeric fast extensions with basic Math methods.
publicstaticintPow(intnumber,intexponent)| Type | Name | Description |
|---|---|---|
int | number | Foundation. |
int | exponent | Exponent of pow. |
Pow specified foundation to exponent.
Calculation result.
| Name | Description |
|---|---|
| OverflowException | Throws when calculation result is too big. |
Generated withModularDoc