Does anyone know any good animations that show how...
# of-functional-programming
r
Does anyone know any good animations that show how
apply
works in Clojure? Something like these? https://jstutorial.medium.com/map-filter-and-reduce-animated-7fe391a35a47
d
I don’t know about one for apply, but I also did one for map & reduce: https://lambdabricks.github.io/animating-hofs/
🙌 1
👀 1
I was thinking that apply is a really similar inner work to
map
in the animation that I made. It receives a function and some arguments and calls the function with the arguments it received.