In response to a P5P posting, I strolled through perlfunc and came up with a representative list of the scalar context return values for things we normally use in a list context. Surprisingly, more things don't return a length than do. Here's the list:
| grep | length |
| map | length |
| @foo | length (efficiently) |
| keys/values | length (efficiently) |
| split | length, but @_ side-effect |
| |
| (10, 20, 30) | last element |
| @foo[3..5] | last element |
| (10, 20, 30)[2, 1] | last element |
| splice | last element |
| |
| caller | package name (first element of list return) |
| each | key (first element) |
| getpwuid | username (first element) |
| getpwnam | user ID (third element of list return) |
| glob/<*> | "next" item (repeat until undef) |
| gmtime/localtime | printable string (instead of list of components) |
| readline/<HANDLE> | "next" item (repeat until undef) |
| readpipe/``/qx | one item instead of list of lines |
| readdir | "next" item (repeat until undef) |
| reverse | string reverse instead of list reverse |
| select(4-arg) | $nfound (first element of list) |
| sort | undef |
| stat | success value |
| times | $user (first element) |
| unpack | first element |
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.
|
|