Let's assume I'll define a structure:
- Code: Select all
(defstruct my-Str
(slot-1 0 :type fixnum)
(slot-2 0.0d0 :type double-float))
It's a new type. How can I make an array of elements of that type? I've tried (make-array (list 5) :element-type 'my-Str), but all I got was an array of type T.
