FLI type descriptor
const type. fli
:const &optional type
The type of the constant. The default is:int.
:const type corresponds to the Cconst type qualifier. The behavior of a:const is exactly the same as the behavior of its type, and it is only included to ease the readability of FLI code and for naming conventions.
(setq pi1 (fli:allocate-foreign-object
:type '(:const :float)))
(setf (fli:dereference pi1) 3.141))
:volatile