| Arc Cross Reference |
last[procedure] last xsReturns the last element of a list xs. If xs is nil, returns nil. It won't like dotted list. (def last (seq)
(if (no (cdr seq))
(car seq)
(last (cdr seq))))
| AboutAlphabetical Indexa b c d e f g h i j k l m n o p q r s t u v w x y z other ReleasesRelated |