Generic Function Normalize-Syntax (3 methods)

( normalize-syntax < syntax > )

Part of:

package cl-perec
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

normalize-syntax < compound-form
normalize-syntax < function-call
normalize-syntax < t >