Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^5: Perl6 Contest #2: P6 That Doesn't Look Like P5

by eric256 (Parson)
on Jun 08, 2005 at 13:07 UTC ( [id://464676]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Perl6 Contest #2: P6 That Doesn't Look Like P5
in thread Perl6 Contest #2: P6 That Doesn't Look Like P5

Couldn't you place named paramteres after the uhhh....splatted?... parameter?

Actualy a quick test shows that doesn't work. I think however it would be usefull to have a set of positional paramters (like your slurpy array) and then follow them with parameters that are meant to be set by named pairs. Then sub oob(*@lst,?$x = $CALLER::_) { would DWIM


___________
Eric Hodges

Replies are listed 'Best First'.
Re^6: Perl6 Contest #2: P6 That Doesn't Look Like P5
by tall_man (Parson) on Jun 08, 2005 at 18:17 UTC
    I don't believe it will ever be possible to put named parameters after slurpy parameters. From E06:

    An important restriction on named arguments is that they cannot come before positional arguments, or after any arguments that are bound to a slurpy array. Otherwise, there would be no efficient, single-pass way of working out which unnamed arguments belong to which parameters. But apart from that one overarching restriction (which Larry likes to think of as a zoning law), we’re free to pass named arguments in any order we like. That’s a huge advantage in any subroutine that takes a large number of parameters, because it means we no longer have to remember their order, just their names.

    So this looks like the reason for my bug also. Named parameters cannot come before *@lst (because it's positional) and they cannot come after (because it's slurpy) so the declaration is invalid.

    By the way, the "+" for "named only" doesn't really mean it. I found this astonishing code in the test cases:

    sub foo (+$x = 3) { $x } is(foo(4), 4, "using a named as a positional works");

    If that is legal, what's the difference between a "+" prefix and a "?" prefix on a parameter?

      It is not legal, and the test case is in error.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://464676]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-18 15:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found