Binary operators to be printed as
This constant is an alist that maps binary operator types to the identifier string used to print them using operator-call syntax.
If a binary operator type is not a key in this map, then the binary operator will be printed in infix form by pprint-binop.
Some binary 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 *binops-opcall-print-names* '((:nand . "nand") (:nor . "nor") (:pow-wrapped . "pow_wrapped") (:mul-wrapped . "mul_wrapped") (:div-wrapped . "div_wrapped") (:rem-wrapped . "rem_wrapped") (:add-wrapped . "add_wrapped") (:sub-wrapped . "sub_wrapped") (:shl-wrapped . "shl_wrapped") (:shr-wrapped . "shr_wrapped")))