in reply to Re^3: RFC: Junction.pm
in thread RFC: Junction.pm

Aren't the math operators something like:
sub do_<op> { my ($self, $other, $switch) = @_; @$self = map { $switch ? ($other <op> $_) : ($_ <op> $other) } @$self; return $self; }

The Perfect is the Enemy of the Good.