mapfoldl(f, op, itr)
.. mapfoldl(f, op, itr)
Like ``mapfoldl(f, op, v0, itr)``, but using the first element of
``itr`` as ``v0``. In general, this cannot be used with empty
collections (see ``reduce(op, itr)``).
Examples
julia> mapfoldl((x) -> x+1, -, -1, [5:7]) # = ((((-1) - 6) - 7) - 8)
-22
See Also
foldl, foldr, mapfoldl, mapfoldr, mapreduce, mapreducedim,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.