pnutzh4x0r@lemmy.ndlug.org to ProgrammingEnglish · 1 year agoLinear code is more readableblog.separateconcerns.comexternal-linkmessage-square46fedilinkarrow-up1134arrow-down115
arrow-up1119arrow-down1external-linkLinear code is more readableblog.separateconcerns.compnutzh4x0r@lemmy.ndlug.org to ProgrammingEnglish · 1 year agomessage-square46fedilink
minus-squarerobinmlinkfedilinkarrow-up1·edit-21 year agoOne way to make it obvious which function can be called at which state is to use different type. Like UnbackedPizza and CookedPizza, and the bake function takes the former and returns the later.
One way to make it obvious which function can be called at which state is to use different type. Like
UnbackedPizza
andCookedPizza
, and thebake
function takes the former and returns the later.