Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 560 Bytes

REJECTED.md

File metadata and controls

25 lines (16 loc) · 560 Bytes

Rejected rules and suggestions


rule

Use tail-recursive functions instead of foldl

rejected because

We love high-order functions!


rule

Using 'andalso', 'orelse', and the like, might save a 'case' or two

rejected because

They're not intended to be used that way and the resulting code messes up with dialyzer


rule

Replace lists:map with either lists:foreach or list comprehensions

rejected because

There is not true that LCs are better than list:map in all scenarios.