lispdoc - results for array-element-type |
(array-element-type array) | Function: Return the type of the elements of the array
|
Example:(defun nsubseq (sequence start &optional (end (length sequence))) "Return a subsequence by pointing to location in original sequence." (make-array (- end start) :element-type (array-element-type sequence) :displaced-to sequence :displaced-index-offset start)) | Mentioned in: CLtL2 - 17.3. Array Information CLtL2 - 25.1.4. Similarity of Constants CLtL2 - 4.5. Type Specifiers That Specialize HyperSpec - Function ARRAY-ELEMENT-TYPE |
(upgraded-array-element-type spec &optional environment) | Function: Return the element type that will actually be used to implement an array with the specifier :ELEMENT-TYPE Spec.
|
| Mentioned in: CLtL2 - 17.1. Array Creation CLtL2 - 4.10. Type Upgrading CLtL2 - 4.5. Type Specifiers That Specialize HyperSpec - Function UPGRADED-ARRAY-ELEMENT-TYPE | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |