Why is lists:zf/2 an alias for filtermap/2 in Erlang?
It's an undocumented but exported function in the lists: module. Here is the implementation:
zf(F, L) ->
filtermap(F, L).
What I'm baffled by is:
- what's it for?
- what does "zf" stand for? "Zermelo-Fraenkel"?