(<) :: (Any a) => a -> a -> Bool
Returns true if (= (cmp lhs rhs) Less)
(< 3 4) ;; True
(< 3 3) ;; False
(>) :: (Any a) => a -> a -> Bool
Returns true if (= (cmp lhs rhs) Greater)
(> 3 4) ;; False
(> 5 3) ;; True
(>=) :: (Any a) => a -> a -> Bool
Returns true if (or (= lhs rhs) (> lhs rhs))
.
(>= 4 4) ;; True
(>= 3 4) ;; False
(<=) :: (Any a) => a -> a -> Bool
Returns true if (or (= lhs rhs) (< lhs rhs))
.
(<= 3 3) ;; True
(<= 3 4) ;; True
(%) :: Integer -> Integer -> Integer
Returns the remainder of the euclidian division of lhs
by rhs
.
lhs :: Value
: Left hand side argument.rhs :: Value
: Right hand side argument.
(% 10 3) ;; 1
(% 12 3) ;; 0