routine ^
Documentation for routine ^
assembled from the following types:
language documentation Operators
From Operators
(Operators) prefix ^
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
language documentation Operators
From Operators
(Operators) infix ^
multi sub infix:<^>(, --> Junction) is assoc<list>
Creates a one Junction from its arguments. See Junction for more details.