Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
alexandria
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christophe Junke
alexandria
Commits
8b9e86e1
Commit
8b9e86e1
authored
17 years ago
by
Attila Lendvai
Browse files
Options
Downloads
Patches
Plain Diff
Added an almost full implementation of CDR5
parent
a16fdecd
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
alexandria.asd
+1
-1
1 addition, 1 deletion
alexandria.asd
arrays.lisp
+0
-12
0 additions, 12 deletions
arrays.lisp
types.lisp
+96
-0
96 additions, 0 deletions
types.lisp
with
97 additions
and
13 deletions
alexandria.asd
+
1
−
1
View file @
8b9e86e1
...
...
@@ -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"
))
...
...
This diff is collapsed.
Click to expand it.
arrays.lisp
+
0
−
12
View file @
8b9e86e1
(
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
)
...
...
This diff is collapsed.
Click to expand it.
types.lisp
+
96
−
0
View file @
8b9e86e1
(
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."
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment