lispdoc - results for fill-pointer |
(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 |
(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 |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |