> Regarding your footnote, supposing i didn't need 0 for false, how would i do it? And how else can you represent false?
Just use the product of a doubled negation to get clear booleans!¹
Perl's definition of false covers different data types and context cases.
from perldata
A scalar value is interpreted as TRUE in the Boolean sense if i
+t is not
the null string or the number 0 (or its string equivalent, "0")
+. The
Boolean context is just a special kind of scalar context where
+no
conversion to a string or a number is ever performed.
(Null string here means either empty string "" or undef)
from perlsyn
Truth and Falsehood
The number 0, the strings '0' and '', the empty list "()", and
+"undef"
are all false in a boolean context. All other values are true.
Negation of a true value by "!" or "not" returns a special fals
+e value.
When evaluated as a string it is treated as '', but as a number
+, it is
treated as 0.
¹) in this case
my @cell_contents = map { !!$_ } @$array_ref[3..10];
for me the most readable alternative!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|