See Original text in context
method excludes-min(Range:D: --> Bool:D)
Returns True if the start point is excluded from the range, and False otherwise.
True
False
say (1..5).excludes-min; # OUTPUT: «False» say (1^..^5).excludes-min; # OUTPUT: «True»