JanetDocsPlaygroundI'm feeling luckyGitHub sign in

compare>



    function
    boot.janet on line 792, column 1

    (compare> & xs)

    Equivalent of `>` but using polymorphic `compare` instead of 
    primitive comparator.


1 exampleSign in to add an example
Loading...
(compare> 1 0) # => true
(compare> 10 9.9) # => true
(compare> :a :b) # => false
(compare> :b :a) # => true
swlkrPlayground