JanetDocsPlaygroundI'm feeling luckyGitHub sign in

zero?



    function
    boot.janet on line 802, column 1

    (zero? x)

    Check if x is zero.


1 exampleSign in to add an example
Loading...
(zero? 0)  # => true
(map zero? [0 1 2])  # => @[true false false]
cellularmitosisPlayground