Function: NCONC1

Documentation

destrucively appends a new element to a list

Source

(defun nconc1 (lst obj)
  "destrucively appends a new element to a list"
  (nconc lst (list obj)))
Source Context