In Operators§
See primary documentation in context for prefix ^
multi prefix:<^>(Any --> Range)
Coerces the argument to Numeric
, and generates a range from 0 up to (but excluding) the argument.
say ^5; # OUTPUT: «0..^5»for ^5 # 5 iterations
In Operators§
See primary documentation in context for infix ^
multi infix:<^>(, --> Junction) is assoc<list>
Creates a one Junction
from its arguments. See Junction
for more details.