Generic Function Normalize-Syntax (3 methods)
(
normalize-syntax < syntax > )
Normalizes type asserts to (typep ...) forms to ease further processing:
(typep <object> '<class-name>) -> (typep <object> <class>)
(subtypep (class-of <obj>) '<class-name>) -> (typep <object> <class>)
(subtypep (class-of <obj>) <type>) -> (typep <object> <type>)
Method Summary