1 2 3 4
(defun-inline >= (A B) (not (> B A))) (defun-inline <= (A B) (not (> A B))) (defun-inline < (A B) (> B A))