projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
598ae96
)
DEFCOMPARISON for =
author
Owen Rodley
<Strigoides@gmail.com>
Sat, 18 May 2013 13:51:08 +0000
(
01:51
+1200)
committer
Owen Rodley
<Strigoides@gmail.com>
Sun, 19 May 2013 23:06:26 +0000
(11:06 +1200)
src/numbers.lisp
patch
|
blob
|
history
diff --git
a/src/numbers.lisp
b/src/numbers.lisp
index
8121b8e
..
060e657
100644
(file)
--- a/
src/numbers.lisp
+++ b/
src/numbers.lisp
@@
-16,7
+16,6
@@
;;;; Various numeric functions and constants
;; Basic functions
-(defun = (x y) (= x y))
(defun * (x y) (* x y))
(defun / (x y) (/ x y))
(defun 1+ (x) (+ x 1))
@@
-58,6
+57,7
@@
(defcomparison >)
(defcomparison >=)
+(defcomparison =)
(defcomparison <)
(defcomparison <=)