b* type declaration operator.
This b* binder provides a concise syntax for type declarations, which can sometimes improve the efficiency of Common Lisp code. See the documentation for declare and type-spec for more information about type declarations.
Usage example:
(b* (((the integer x) (form))) (result-form))
is equivalent to
(let ((x (form))) (declare (type integer x)) (result-form))
The