See Original text in context
Returns the source of the failed move operation
See Original text in context
method from()
Returns the index of the starting position of the match.
See Original text in context
Returns the source of the failed copy operation
See Original text in context
Returns the source of the failed rename operation
See Original text in context
method from(--> Str)
Returns the name of the language with which the CompUnit
object was created (if any). It will be Raku
by default.
See Original text in context
Assumes the list contains Match and returns the value of .from
called on the first element of the list.
'abcdefg' ~~ /(c)(d)/;say $/.list.from; # OUTPUT: «2»"abc123def" ~~ m:g/\d/;say $/.list.from; # OUTPUT: «3»