Hash :
f01e7756
Author :
Thomas de Grivel
Date :
2022-11-18T20:10:12
(compare ‘a ‘b) => -1
(compare ‘a “a”) => -1
(compare ‘(a b 1) ‘(a b 2)) => -1
(defstruct fruit weight price)
(defmethod compare ((a fruit) (b fruit)) (compare (/ (fruit-price a) (fruit-weight a))
(/ (fruit-price b) (fruit-weight b))))
(let ((apple (make-fruit :price 0.3 :weight 100))
(orange (make-fruit :price 4.5 :weight 1000)))
(compare apple orange))
=> -1
This project welcomes COMPARE methods for types that have an atomic type specifier, with an emphasis on speed and functional correctness.
To submit contributions, just fork the project and submit a pull request.
cl-compare - generic comparison functions
Copyright 2022 Thomas de Grivel thodg@kmx.io
Permission is hereby granted to use this software granted the above copyright notice and this permission paragraph are included in all copies and substantial portions of this software.
THIS SOFTWARE IS PROVIDED “AS-IS” WITHOUT ANY GUARANTEE OF PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF THIS SOFTWARE.