mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
9073764a62
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1015 0fc631ac-6414-0410-93d0-97cfa31319b6
17 lines
311 B
Plaintext
17 lines
311 B
Plaintext
Function: abs
|
|
|
|
DOC_MSE_VERSION: since 0.3.7
|
|
|
|
--Usage--
|
|
> abs(some_number)
|
|
|
|
Returns the absolute value of a number.
|
|
|
|
--Parameters--
|
|
! Parameter Type Description
|
|
| @input@ [[type:int]] or [[type:double]] Number to determine the absolute value of
|
|
|
|
--Examples--
|
|
> abs(1.5) == 1.5
|
|
> abs(-1) == 1
|