7
votes
Benefits of using short-circuit evaluation
Short circuit evaluation is translated into branches in assembly language in the same way if statements are (branches are basically a goto), which means it is not going to be any slower than if sta …
