JanetDocsPlaygroundI'm feeling luckyGitHub sign in

math/abs



    cfunction
    src/core/math.c on line 285, column 1

    (math/abs x)

    Return the absolute value of x.


2 examplesSign in to add an example
Loading...
(map math/abs   [-2.9 -2.1 2.1 2.9])  # => @[ 2.9  2.1  2.1  2.9 ]
(map math/floor [-2.9 -2.1 2.1 2.9])  # => @[ -3   -3   2    2   ]
(map math/ceil  [-2.9 -2.1 2.1 2.9])  # => @[ -2   -2   3    3   ]
(map math/round [-2.9 -2.1 2.1 2.9])  # => @[ -3   -2   2    3   ]
(map math/trunc [-2.9 -2.1 2.1 2.9])  # => @[ -2   -2   2    2   ]
cellularmitosisPlayground
(math/abs -42)  # => 42
(map math/abs [-1 0 1])  # => @[1 0 1]
cellularmitosisPlayground