mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-11 23:07:36 +02:00
Added (macro?)
This commit is contained in:
parent
29758df2cc
commit
ba664fe93f
3 changed files with 3 additions and 0 deletions
|
@ -543,6 +543,7 @@
|
|||
((eq? p 'integer?) "Cyc_is_integer")
|
||||
((eq? p 'pair?) "Cyc_is_cons")
|
||||
((eq? p 'procedure?) "Cyc_is_procedure")
|
||||
((eq? p 'macro?) "Cyc_is_macro")
|
||||
((eq? p 'port?) "Cyc_is_port")
|
||||
((eq? p 'vector?) "Cyc_is_vector")
|
||||
((eq? p 'string?) "Cyc_is_string")
|
||||
|
|
|
@ -713,6 +713,7 @@
|
|||
pair?
|
||||
port?
|
||||
procedure?
|
||||
macro?
|
||||
vector?
|
||||
string?
|
||||
symbol?
|
||||
|
|
|
@ -287,6 +287,7 @@
|
|||
(list 'pair? pair?)
|
||||
(list 'port? port?)
|
||||
(list 'procedure? procedure?)
|
||||
(list 'macro? macro?)
|
||||
(list 'vector? vector?)
|
||||
(list 'string? string?)
|
||||
(list 'symbol? symbol?)
|
||||
|
|
Loading…
Add table
Reference in a new issue