3 ms·
I'm unsure if I have chain together something like theThing() .map(someLamda) .filter(someLamda) .reduce(someLamda).... Have I actually reduced complexity? I
by pipes 7d ago
I'm unsure if I have chain together something like
theThing()
.map(someLamda)
.filter(someLamda)
.reduce(someLamda)....
Have I actually reduced complexity? I certainly prefer this over loops and if statements but does the pipeline and lamdas count as reducing cyclomatic complexity?