lazy
ErrorsCollection

lazy

Synthesised documentation from type/Iterable

From type/Iterable

See Original text in context

method lazy(--> Iterable)

Returns a lazy iterable wrapping the invocant.

say (1 ... 1000).is-lazy;      # OUTPUT: «False␤» 
say (1 ... 1000).lazy.is-lazy# OUTPUT: «True␤»