Unnamed boolean parameters to functions, especially when there is more than one. Here is such a function declaration (in a c-like C-like pseudo language):
cookBreakfast(boolean withEggs, boolean withToast, boolean withJuiceNotMilk);
The function call is incomprehensible:
cookBreakfast(true, false, true);
Solution: Use use enums or named parameters instead. How this is done will be language dependent.
cookBreakfast(eEggsYes, eToastNo, eJuice);
or
cookBreakfast( withEggs => true, withToast => false, withJuiceNotMilk => true);
or
BreakfastOrder bo;
bo.withEggs = true; bo.withToast = false; bo.withJuiceNotMilk = true;
cookBreakast(bo);
