Skip to content
Snippets Groups Projects
Commit 8b9e86e1 authored by Attila Lendvai's avatar Attila Lendvai
Browse files

Added an almost full implementation of CDR5

parent a16fdecd
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
(:file "macros" :depends-on ("package" "strings" "symbols"))
(:file "control-flow" :depends-on ("package" "macros"))
(:file "symbols" :depends-on ("package"))
(:file "arrays" :depends-on ("package"))
(:file "arrays" :depends-on ("package" "types"))
(:file "types" :depends-on ("package"))
(:file "binding" :depends-on ("package"))
(:file "functions" :depends-on ("package" "symbols" "macros"))
......
(in-package :alexandria)
(deftype array-index (&optional (length array-dimension-limit))
"Type designator for an index into array of LENGTH: an integer between
0 (inclusive) and LENGTH (exclusive). LENGTH defaults to
ARRAY-DIMENSION-LIMIT."
`(integer 0 (,length)))
(deftype array-length (&optional (length array-dimension-limit))
"Type designator for a dimension of an array of LENGTH: an integer between
0 (inclusive) and LENGTH (inclusive). LENGTH defaults to
ARRAY-DIMENSION-LIMIT."
`(integer 0 ,length))
(defun copy-array (array &key
(element-type (array-element-type array))
(fill-pointer (and (array-has-fill-pointer-p array)
......
(in-package :alexandria)
(deftype array-index (&optional (length array-dimension-limit))
"Type designator for an index into array of LENGTH: an integer between
0 (inclusive) and LENGTH (exclusive). LENGTH defaults to
ARRAY-DIMENSION-LIMIT."
`(integer 0 (,length)))
(deftype array-length (&optional (length array-dimension-limit))
"Type designator for a dimension of an array of LENGTH: an integer between
0 (inclusive) and LENGTH (inclusive). LENGTH defaults to
ARRAY-DIMENSION-LIMIT."
`(integer 0 ,length))
;; This MACROLET will generate most of CDR5 (http://cdr.eurolisp.org/document/5/)
;; except the RATIO related definitions and ARRAY-INDEX.
(macrolet
((frob (type &optional (base-type type))
(let ((subtype-names (list))
(predicate-names (list)))
(flet ((make-subtype-name (format-control)
(let ((result (format-symbol :alexandria format-control
(symbol-name type))))
(push result subtype-names)
result))
(make-predicate-name (sybtype-name)
(let ((result (format-symbol :alexandria "~A-P"
(symbol-name sybtype-name))))
(push result predicate-names)
result)))
(let* ((negative-name (make-subtype-name "NEGATIVE-~A"))
(non-positive-name (make-subtype-name "NON-POSITIVE-~A"))
(non-negative-name (make-subtype-name "NON-NEGATIVE-~A"))
(positive-name (make-subtype-name "POSITIVE-~A"))
(negative-p-name (make-predicate-name negative-name))
(non-positive-p-name (make-predicate-name non-positive-name))
(non-negative-p-name (make-predicate-name non-negative-name))
(positive-p-name (make-predicate-name positive-name))
(negative-extremum)
(positive-extremum)
(below-zero)
(above-zero)
(zero))
(setf (values negative-extremum below-zero
above-zero positive-extremum zero)
(ecase type
(fixnum (values 'most-negative-fixnum -1 1 'most-positive-fixnum 0))
(integer (values ''* -1 1 ''* 0))
(rational (values ''* ''(0) ''(0) ''* 0))
(real (values ''* ''(0) ''(0) ''* 0))
(float (values ''* ''(0.0E0) ''(0.0E0) ''* 0.0E0))
(short-float (values ''* ''(0.0S0) ''(0.0S0) ''* 0.0S0))
(single-float (values ''* ''(0.0F0) ''(0.0F0) ''* 0.0F0))
(double-float (values ''* ''(0.0D0) ''(0.0D0) ''* 0.0D0))
(long-float (values ''* ''(0.0L0) ''(0.0L0) ''* 0.0L0))))
`(progn
(deftype ,negative-name ()
`(,',base-type ,,negative-extremum ,,below-zero))
(deftype ,non-positive-name ()
`(,',base-type ,,negative-extremum ,,zero))
(deftype ,non-negative-name ()
`(,',base-type ,,zero ,,positive-extremum))
(deftype ,positive-name ()
`(,',base-type ,,above-zero ,,positive-extremum))
(declaim (inline ,@predicate-names))
(defun ,negative-p-name (n)
(and (typep n ',type)
(< n ,zero)))
(defun ,non-positive-p-name (n)
(and (typep n ',type)
(<= n ,zero)))
(defun ,non-negative-p-name (n)
(and (typep n ',type)
(<= ,zero n)))
(defun ,positive-p-name (n)
(and (typep n ',type)
(< ,zero n)))
(export ',subtype-names :alexandria)
(export ',predicate-names :alexandria)))))))
(frob fixnum integer)
(frob integer)
(frob rational)
(frob real)
(frob float)
(frob short-float)
(frob single-float)
(frob double-float)
(frob long-float))
(defun of-type (type)
"Returns a function of one argument, which returns true when its argument is
of TYPE."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment