Functional Programming: Tail-Call Optimization
Learn about tail-call optimization in Java 8.
We'll cover the following...
What is Tail-Call optimization?
One of the hallmarks of functional programming is tail-call recursion. It solves the same problem as iterative approaches . Unfortunately, it ...