Comment on When static makes your C code 10 times fasterparentComments−Someone5yYes, but you would need way fewer of such phrases than you need now. Making the exceptional case take more code is the way to go, IMO.Many languages also support something like case 1,2,4: or even case 1-10, 20-22, 34: That further decreases the need for falling through.
Comments
Yes, but you would need way fewer of such phrases than you need now. Making the exceptional case take more code is the way to go, IMO.
Many languages also support something like
or even That further decreases the need for falling through.