Did you know there exist an IMP operator in ColdFusion? Well, i didn't even after 8 years of day to day ColdFusion usage.
Found it accidentally when trying to have a variable name IMP.
For thouse who find IMP new too, here is how it work:

If the joiner is IMP and the first clause is false, the entire statement is true and the second will never run.

As opposite to AND and OR:

If the joiner is AND and the first clause is false, the entire statement is false and the second clause will never run.
If the joiner is OR and the first clause is true, then the entire statement is true and the second will never run.