See Original text in context
multi sub 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
See Original text in context
multi sub infix:<^>(, --> Junction) is assoc<list>
Creates a one Junction from its arguments. See Junction for more details.