Updated core functions (markdown)
parent
83add912dc
commit
0c638e104a
|
@ -18,11 +18,11 @@ Public. Takes two arguments, a key and a store. The store may either be a CONS f
|
||||||
|
|
||||||
# (car arg)
|
# (car arg)
|
||||||
|
|
||||||
Public. Takes one argument. If that argument is a CONS cell and is readable by the current user, returns the value indicated by the first pointer of that cell, else NIL.
|
Public. Takes one argument. If that argument is a CONS cell and is readable by the current user, returns the value indicated by the first pointer of that cell; if the argument is an STRG and is readable by the user, a CHAR representing the first character in the string; else NIL.
|
||||||
|
|
||||||
# (cdr arg)
|
# (cdr arg)
|
||||||
|
|
||||||
Public. Takes one argument. If that argument is a CONS cell and is readable by the current user, returns the value indicated by the second pointer of that cell, else NIL.
|
Public. Takes one argument. If that argument is a CONS or STRG cell and is readable by the current user, returns the value indicated by the second pointer of that cell, else NIL.
|
||||||
|
|
||||||
# (cond args...)
|
# (cond args...)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue