routine end
Documentation for routine end
assembled from the following types:
class Any
From Any
(Any) method end
multi method end(Any: --> 0)multi method end(Any:)
Interprets the invocant as a list, and returns the last index of that list.
say 6.end; # OUTPUT: «0»say <a b c>.end; # OUTPUT: «2»
class List
From List
(List) routine end
Defined as:
sub end( --> Int)method end(List: --> Int)
Returns the index of the last element.
say (1,2,3,4).end; # OUTPUT: «3»