I have a few things I'd like to see in perl 6 (or 7). (They may already be in development, I don't read as much apocolyptic literature as I probably should.)
Consider this code:
my $highest = 0;
my $lowest = 1_000_000_000;
foreach (@list_of_int) {
$highest = $_ if $_ > $highest;
$lowest = $_ if $_ < $lowest; # was $highest - see update
}
Now I'd like to get rid of the '
= $_ if $_ >' as it's annoyingly long winded. In the spirit of ||= ('or equals'), let me suggest =>> become 'equals the greater' and =<< become 'equals the lesser'. So now we have:
my $highest = 0;
my $lowest; # undef
foreach (@list_of_int) {
$highest =>> $_;
$lowest =<< $_;
}
(I'd use '=>' but that would be confusing to perl5ers.)
There'd also be string equivelents:
my $highest = '';
my $lowest; # undef
foreach (@list_of_string) {
$highest eg $_;
$lowest el $_;
}
Note that my =<< and el operators would consider anything
defined to be less than 'undef' which is why the
my declarations for $lowest are undef. This means we don't have to guess a value that is higher than the lowest value when initialising.
Thoughts? Comments? Ridicule?
Update: Fixed typo pointed out by NetWallah. Added a pile of semi-colons.
"Get real! This is a discussion group, not a helpdesk. You post something, we discuss its implications. If the discussion happens to answer a question you've asked, that's incidental." -- nobull@mail.com in clpm
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.