Changeset 688 for branches/f4grobner/infix-printer.lisp
- Timestamp:
- 2015-06-08T16:32:41-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/infix-printer.lisp
r687 r688 154 154 155 155 (defun infix-print (expr &optional (stream t) (op nil) (print-level 0)) 156 "Print an expression EXPR in infix notation to stream STREAM or to string. 157 If OP is not nil, the expression is parenthesized if its operator 158 has lower precedence than OP. Returns the string containing the printed 159 expression, or (VALUES) if STREAM is NIL." 156 "Print an expression EXPR in infix notation to stream STREAM or to 157 string if (NULL STREAM). If OP is not nil, the expression is 158 parenthesized if its operator has lower precedence than OP. Returns 159 the string containing the printed expression, or (VALUES) if STREAM is 160 NIL." 160 161 (cond 161 162 ((null stream)
Note:
See TracChangeset
for help on using the changeset viewer.