14.2 Conses Dictionary
- list, System Class
- null, System Class
- cons, System Class
- atom, Type
- cons object-1 object-2 → cons, Function
- consp object → generalized-boolean, Function
- atom object → generalized-boolean, Function
- rplaca, rplacd, Function
- car, cdr, caar, cadr, cdar, cddr, caaar, caadr, cadar, caddr, cdaar, cdadr, cddar, cdddr, caaaar, caaadr, caadar, caaddr, cadaar, cadadr, caddar, cadddr, cdaaar, cdaadr, cdadar, cdaddr, cddaar, cddadr, cdddar, cddddr, Accessor
- copy-tree tree → new-tree, Function
- sublis alist tree &key key test test-not → new-tree, Function
- nsublis alist tree &key key test test-not → new-tree, Function
- subst new old tree &key key test test-not → new-tree, Function
- subst-if new predicate tree &key key → new-tree, Function
- subst-if-not new predicate tree &key key → new-tree, Function
- nsubst new old tree &key key test test-not → new-tree, Function
- nsubst-if new predicate tree &key key → new-tree, Function
- nsubst-if-not new predicate tree &key key → new-tree, Function
- tree-equal tree-1 tree-2 &key test test-not → generalized-boolean, Function
- copy-list list → copy, Function
- list &rest objects → list, Function
- list* &rest objects+ → result, Function
- list-length list → length, Function
- listp object → generalized-boolean, Function
- make-list size &key initial-element → list, Function
- push item place → new-place-value, Macro
- pop place → element, Macro
- first, second, third, fourth, fifth, sixth, seventh, eighth, ninth, tenth, Accessor
- nth n list → object, Accessor
- (setf (nth n list) new-object), Accessor
- endp list → generalized-boolean, Function
- null object → boolean, Function
- nconc &rest lists → concatenated-list, Function
- append &rest lists → result, Function
- revappend list tail → result-list, Function
- nreconc list tail → result-list, Function
- butlast list &optional n → result-list, Function
- nbutlast list &optional n → result-list, Function
- last list &optional n → tail, Function
- ldiff list object → result-list, Function
- tailp object list → generalized-boolean, Function
- nthcdr n list → tail, Function
- rest list → tail, Accessor
- (setf (rest list) new-tail), Accessor
- member item list &key key test test-not → tail, Function
- member-if predicate list &key key → tail, Function
- member-if-not predicate list &key key → tail, Function
- mapc function &rest lists+ → list-1, Function
- mapcar function &rest lists+ → result-list, Function
- mapcan function &rest lists+ → concatenated-results, Function
- mapl function &rest lists+ → list-1, Function
- maplist function &rest lists+ → result-list, Function
- mapcon function &rest lists+ → concatenated-results, Function
- acons key datum alist → new-alist, Function
- assoc item alist &key key test test-not → entry, Function
- assoc-if predicate alist &key key → entry, Function
- assoc-if-not predicate alist &key key → entry, Function
- copy-alist alist → new-alist, Function
- pairlis keys data &optional alist → new-alist, Function
- rassoc item alist &key key test test-not → entry, Function
- rassoc-if predicate alist &key key → entry, Function
- rassoc-if-not predicate alist &key key → entry, Function
- get-properties plist indicator-list → indicator, value, tail, Function
- getf plist indicator &optional default → value, Accessor
- (setf (getf place indicator &optional default) new-value), Accessor
- remf place indicator → generalized-boolean, Macro
- intersection list-1 list-2 &key key test test-not → result-list, Function
- nintersection list-1 list-2 &key key test test-not → result-list, Function
- adjoin item list &key key test test-not → new-list, Function
- pushnew item place &key key test test-not → new-place-value, Macro
- set-difference list-1 list-2 &key key test test-not → result-list, Function
- nset-difference list-1 list-2 &key key test test-not → result-list, Function
- set-exclusive-or list-1 list-2 &key key test test-not → result-list, Function
- nset-exclusive-or list-1 list-2 &key key test test-not → result-list, Function
- subsetp list-1 list-2 &key key test test-not → generalized-boolean, Function
- union list-1 list-2 &key key test test-not → result-list, Function
- nunion list-1 list-2 &key key test test-not → result-list, Function