in reply to Re^2: use constant for strings (unary plus)
in thread use constant for strings
I don't want to use the sigil simply because it disables the prototype and thus the constant-ish nature as mentions of the "constant" become regular runtime function calls (otherwise they'd be substituted at compile time). I might as well just use a variable.
Seeing as the unary plus doesn't work here, the next best thing I'd prefer would be (WISCONSIN) - with the parens following it looks quite awkward IMHO.
I like the unary plus in other situations and use it lots though - f.ex
where I would otherwise be forced to use curliesmap +(foo($_, "bar"))[3], @baz;
or another extra pair of parens.map { foo($_, "bar"))[3] } @baz;
I don't like either of the latter two, though I realise quite a few people here will disagree. I think the last one at least is certain not to win any prizes for beauty..map((foo($_, "bar"))[3], @baz);
Makeshifts last the longest.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re^3: use constant for strings (unary plus)
by BrowserUk (Patriarch) on Apr 18, 2003 at 22:06 UTC | |
by diotalevi (Canon) on Apr 18, 2003 at 22:15 UTC | |
by Aristotle (Chancellor) on Apr 19, 2003 at 00:33 UTC | |
by BrowserUk (Patriarch) on Apr 19, 2003 at 09:49 UTC | |
by Aristotle (Chancellor) on Apr 19, 2003 at 13:40 UTC |