lispdoc - results for copy-sequence |
(copy-seq sequence) | Function: Return a copy of SEQUENCE which is EQUAL to SEQUENCE but not EQ.
|
Example:(defun copy-board (board) (copy-seq board)) | Mentioned in: CLtL2 - 14.1. Simple Sequence Functions CLtL2 - 15.2. Lists HyperSpec - Function COPY-SEQ PCL - whole sequence manipulations Successful Lisp - chapter13 |
(alexandria.0.dev:copy-sequence type sequence) | Function: Returns a fresh sequence of TYPE, which has the same elements as SEQUENCE.
|
(copy-symbol symbol &optional (copy-props nil) &aux new-symbol) | Function: Make and return a new uninterned symbol with the same print name as SYMBOL. If COPY-PROPS is false, the new symbol is neither bound nor fbound and has no properties, else it has a copy of SYMBOL's function, value and property list.
|
| Mentioned in: CLtL2 - 10.3. Creating Symbols HyperSpec - Function COPY-SYMBOL | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |