On 9/26/18 6:18 PM, Curt Tilmes wrote:>
> > The methods don't take []. You are calling [] on the thing that the
>      > methods return.


    Yes, I know.  And it is human readable too.  It is one of the
    many reasons I adore Perl 6.

    Where in
         multi method words(Str:D $input: $limit = Inf --> Positional)
    does it state that "words" will do that?  Not all methods will.
    So it need to be stated when they will.





> The part where it says "--> Positional" says the thing that gets
> returned is Positional.
>
> A Positional thing has all sorts of methods and operators you can use,
> including []
>
> Not all methods will, of course.  Only those that say "--> Positional"
> return a Positional that acts like that.
>
> Curt

Hi Curt,

Perfect! Thank you!

So all methods that respond with --> Positional will accept []

Awesome!

-T

Reply via email to