lispdoc - results for fill |
(fill sequence item &key (start 0) end) | Function: Replace the specified elements of SEQUENCE with ITEM.
|
Example:(defun inst (parent) (let ((obj (copy-seq parent))) (setf (parents obj) parent (preclist obj) nil) (fill obj :nil :start 3) obj)) | Mentioned in: CLtL2 - 14.3. Modifying Sequences CLtL2 - 17.3. Array Information HyperSpec - 15.1.1.3.1.1 Fill Pointers HyperSpec - Function FILL PCL - subsequence manipulations Successful Lisp - chapter13 |
file | |
| Mentioned in: HyperSpec - 19.2.2.4.3.1 Directory Components in Non-Hierarchical File Systems HyperSpec - 20.1 File System Concepts HyperSpec - 20.1.2 File Operations on Open and Closed Streams HyperSpec - 21.1.1.2.1 File Streams HyperSpec - 3.2.3 File Compilation | |
(pprint-fill stream list &optional (colon? t) atsign?) | Function: Output LIST to STREAM putting :FILL conditional newlines between each element. If COLON? is NIL (defaults to T), then no parens are printed around the output. ATSIGN? is ignored (but allowed so that PPRINT-FILL can be used with the ~/.../ format directive.
|
| Mentioned in: CLtL2 - 27.3. Dynamic Control of the Arrangement of Output CLtL2 - 27.4. Format Directive Interface CLtL2 - 27.6. Pretty Printing Dispatch Tables HyperSpec - Function PPRINT-FILL, PPRINT-LINEAR, PPRINT-TABULAR | |
(fill-pointer vector) | Function: Return the FILL-POINTER of the given VECTOR.
|
Example:(defun rl-clean-tables () "Cleans all rule-tables." (clrhash *rule-code*) (clrhash *rule-defs*) (setf (fill-pointer *rules*) 0)) | Mentioned in: CLtL2 - 17.5. Fill Pointers CLtL2 - 18. Strings HyperSpec - Accessor FILL-POINTER |
(md5:fill-block) | Function: Convert a complete 64 byte input vector segment into the given 16 word MD5 block. This currently works on (unsigned-byte 8) and character simple-arrays, via the functions `fill-block-ub8' and `fill-block-char' respectively.
|
(md5:fill-block-ub8) | Function: Convert a complete 64 (unsigned-byte 8) input vector segment starting from offset into the given 16 word MD5 block.
|
(md5:fill-block-char) | Function: Convert a complete 64 character input string segment starting from offset into the given 16 word MD5 block.
|
(array-has-fill-pointer-p array) | Function: Return T if the given ARRAY has a fill pointer, or NIL otherwise.
|
Example:(defun maybe-set-fill-pointer (array new-length) "If this is an array with a fill pointer, set it to new-length, if that is longer than the current length." (if (and (arrayp array) (array-has-fill-pointer-p array)) (setf (fill-pointer array) (max (fill-pointer array) new-length)))) | Mentioned in: CLtL2 - 17.5. Fill Pointers HyperSpec - Function ARRAY-HAS-FILL-POINTER-P |
url-rewrite:*url-rewrite-fill-tags* | Variable: The tag/attribute combinations where URL-rewriting should optionally add an attribute.
|
files | |
| Mentioned in: HyperSpec - 20.2 The Files Dictionary HyperSpec - 3.2.4 Literal Objects in Compiled Files | |
file-error | Undocumented
|
| Mentioned in: CLtL2 - 23.1.3. Structured Directories CLtL2 - 23.1.5.3. Using Logical Pathnames CLtL2 - 29.5. Predefined Condition Types HyperSpec - Condition Type FILE-ERROR PCL - interacting with the file system | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |