|
|
| No such thing as a small change | |
| PerlMonks |
Re^2: Mini-Tutorial: Scalar vs List Assignment Operatorby ikegami (Pope) |
| on Sep 05, 2009 at 02:50 UTC ( #793649=note: print w/ replies, xml ) | Need Help?? |
|
The purpose of grep is to filter a list. It does so by evaluating a piece of code for each item in the argument list. It wants a yes/no answer from the code it executes, so scalar context is warranted. The purpose of map is to transform a list. There is no correlation between in the size of the input list and the size of the output list. A given element may be transformed into zero, one or many elements, so list context is warranted. To tie this back to the subject at hand, this is basically how all operators work:
In Section
Meditations
|
|
||||||||||||||||||||