JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

zero?

core-api


    function
    boot.janet on line 907, 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