in reply to Re: What should be returned in scalar context?
in thread What should be returned in scalar context?
I hate having to write $x = uc $x; when the dwimmiest way would be uc $x; and have it mutate in void context.
The funny (?) thing is that Perl itself is inconsistent when it comes to operators that change strings.
| Mutating | Not mutating |
|---|---|
| chomp chop s/// tr/// |
lc lcfirst quotemeta uc ucfirst |
Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: What should be returned in scalar context?
by chromatic (Archbishop) on Dec 03, 2003 at 01:46 UTC |