Unary operators to be printed as
This constant is an alist that maps unary operator types to the identifier string used to print them using operator-call syntax.
If a unary operator type is not a key in this map, then the unary operator will be printed in prefix form by pprint-unop.
Some unary operators only have operator-call syntax and some have both operator-call syntax and prefix syntax. The former must be listed here to printable; the latter may be added here to force them to print in operator-call syntax.
Definition:
(defconst *unops-opcall-print-names* '((:abs . "abs") (:abs-wrapped . "abs_wrapped") (:double . "double") (:inv . "inv") (:square . "square") (:square-root . "square_root")))