lispdoc - results for copy-stream |
(cl-fad:copy-stream from to &optional (checkp t)) | Function: Copies into TO (a stream) from FROM (also a stream) until the end of FROM is reached, in blocks of *stream-buffer-size*. The streams should have the same element type. If CHECKP is true, the streams are checked for compatibility of their types.
|
(alexandria.0.dev:copy-stream input output &key (element-type (stream-element-type input)) (buffer-size 4096) (buffer (make-array buffer-size element-type element-type)) finish-output) | Function: Reads data from INPUT and writes it to OUTPUT. Both INPUT and OUTPUT must be streams, they will be passed to READ-SEQUENCE and WRITE-SEQUENCE and must have compatible element-types.
|
(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 | |
(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 |
(copy-tree object) | Function: Recursively copy trees of conses.
|
| Mentioned in: CLtL2 - 15.2. Lists CLtL2 - 15.4. Substitution of Expressions HyperSpec - Function COPY-TREE PCL - lookup tables alists and plists PCL - trees | |
(copy-list list) | Function: Return a new list which is EQUAL to LIST. LIST may be improper.
|
Example:(defun direct-slots (name) (copy-list (get name 'slots))) | Mentioned in: CLtL2 - 15.2. Lists CLtL2 - 22.1.3. Macro Characters HyperSpec - Function COPY-LIST On Lisp - Functional Interfaces On Lisp - New Utilities (Computation at Compile-Time) PCL - combining recycling with shared structure PCL - trees |
(copy-structure structure) | Function: Return a copy of STRUCTURE with the same (EQL) slot values.
|
| Mentioned in: HyperSpec - Function COPY-STRUCTURE | |
(copy-alist alist) | Function: Return a new association list which is EQUAL to ALIST.
|
| Mentioned in: CLtL2 - 15.2. Lists HyperSpec - Function COPY-ALIST PCL - lookup tables alists and plists | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |