Can someone please explain or give some resources on how function composition works in relation to laziness?
For example how does filter (/='W') . map toUpper $ "justaword" work in Haskell compared to it's counterpart in erlang which is not lazy?
|
Can someone please explain or give some resources on how function composition works in relation to laziness? For example how does |
|||
|
|
|
Every time another character is demanded (or notification of end), the next character - if any - is mapped to uppercase, that is compared to 'W', delivered if unequal.
Now the first character is available, so for queries like Example:
|
|||||||||||||||||||
|