Changeset 5339
- Timestamp:
- Oct 13, 2006, 3:50:00 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-0/l0-numbers.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-0/l0-numbers.lisp
r3884 r5339 310 310 311 311 (defun /=-2 (x y) 312 (not (=-2 x y))) 312 (declare (notinline =-2)) 313 (not (= x y))) 313 314 314 315 315 316 ; true iff (< x y) is false. 316 317 (defun >=-2 (x y) 318 (declare (notinline <-2)) 317 319 (not (< x y))) 318 320 … … 320 322 321 323 (defun <=-2 (x y) 324 (declare (notinline >-2)) 322 325 (not (> x y))) 323 326
Note:
See TracChangeset
for help on using the changeset viewer.
