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