excludes-min
ErrorsCollection

excludes-min

Synthesised documentation from type/Range

From type/Range

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.

say (1..5).excludes-min;                          # OUTPUT: «False␤» 
say (1^..^5).excludes-min;                        # OUTPUT: «True␤»