Open oschulz opened 10 months ago
Add macro @fp ("function on properties") that inverts the behavior of @pf regarding $, so that
@fp
@pf
$
@fp(a + f(b) + $c)
is equivalent to
@pf($a + f($b) + c)
Functions (and expression heads) in @fp will never refer to properties and so don't need to be $-escaped.
Add macro
@fp
("function on properties") that inverts the behavior of@pf
regarding$
, so thatis equivalent to
Functions (and expression heads) in
@fp
will never refer to properties and so don't need to be$
-escaped.