|
|
|
|
|
by piyush_soni
604 days ago
|
|
> Keep data transforms and algorithmic calculations in functional style What annoys me greatly though is kids coding various 'fancy' functional paradigms for data transformation without realizing their performance implications, still thinking they've actually done the 'smarter' thing by transforming it multiple times and changing a simple loop to three or four loops. Example : Array.map.filter.map.reduce. Also when talked about it, they have learned to respond with another fancy term : "that would be premature optimization". :| |
|
Of you work with transducers, the map filter map reduce is still just one single loop.