See Original text in context
multi sub prefix:<+>(Any --> Numeric)
Coerces the argument to Numeric by calling the Numeric
method on it.
See Original text in context
multi sub infix:<+>(, --> Numeric)
Addition operator: Coerces both arguments to Numeric and adds them. From version 6.d it works also on Duration
, DateTime
and Real
types.