Thanks for clarifying however I'm still unsure what a Perl 6 user
should expect to get back from running $string.match(/pat/). This is
the ""one
high-level call to the .match method" yes? So it should be returning a
List of Str (or List of Match in case of capture groups), is this
correct? I ask be
On Thu, Sep 18, 2008 at 06:11:45PM +0800, Chris Davaz wrote:
: I'm trying to pin down what $string.match(/pat/) should be returning.
:
: >From S05:
:
: Under "Return values from match objects"
: "A match always returns a Match object..."
:
: >From S29:
:
: Under the definition of Str.comb
:
:
I'm trying to pin down what $string.match(/pat/) should be returning.
>From S05:
Under "Return values from match objects"
"A match always returns a Match object..."
>From S29:
Under the definition of Str.comb
Saying
$string.comb(/pat/, $n)
is equivalent to
$string.match(rx:global:x(