On Tue, Feb 15, 2005 at 10:01:52PM -0600, Patrick R. Michaud wrote:
: Uh oh, I hadn't caught that particular nuance. Is it indeed over the
: entire equi-precedential part of the operation, or just over the
: chained operators?
Just the chained operators, I think. For more general expression
threading you can always force it with
$junkout = -> $x { random_expression }.($junkin)
or
$junkout = do given $junkin -> $x { random_expression }
or some such (assuming the $x parameter is taken to be non-junctive).
Larry