Should one expect that
flag = (age < 0) | (age > 100)
will execute faster than
flag = (age < 0) || (age > 100)
because the control flow in the || operator slows down instruction pipelining ?
See Branches on
https://en.wikipedia.org/wiki/Instruction_pipelining#Branches