|
|
|
|
|
by jlj
2205 days ago
|
|
For me I get the most benefits from using FP features. I can write one-liners that are easy to read, and replace 10's to 100's of lines of my code. For a simple example,
val newList list.map(function Call(_)) Instead of
val1 = functionCall(1)
valN = functionCall(N) |
|