NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Rebuttal (Score:1)
> a number of changes are being made for the
> sake of change. Things that we use a _lot_
> in Perl 5, like '.' for concatenating, and
> the dereference operator are going to change
The fa
Re:Rebuttal (Score:1)
I accept a lot of your points and take them on board. My point about the file test operators wasn't that I dislike the new syntax - I think it's *much* better than doing tests on the magic underscore. I just dislike the file test operators altogether
You ask if I'd like to see slice and grep moved into a module. Well no, I wouldn't, because they are functions that o
Re:Rebuttal (Score:1)
sub assert_with_comparator {
...
}
Is because I need the automatic currying behaviour, which comes from $^comparator, $^a & $^b ($^foo introduces a named currying parameter, in the same way as $^_)
Maybe
sub (&comparator, $a, $b) is curried {
}
will become a valid way of declaring a curried subroutine, but that hasn't been stated yet, so I used the notation that I *know* will work.
Reply to This
Parent