Updated core functions (markdown)

Simon Brooke 2017-09-19 12:56:16 +01:00
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)
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)
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...)