Function: MAKE-EXTENDABLE-STRING

Documentation

Creates an adjustable string with a fill pointer.

Source

(defun make-extendable-string (&optional (size 10))
  "Creates an adjustable string with a fill pointer."
  (make-array size
              :element-type 'character
              :adjustable t
              :fill-pointer 0))
Source Context