Version 3 of &&

Updated 2014-01-18 12:26:21 by dkf

expr logical "and" operator, dual of ||. Returns truth if both arguments are boolean true, and falsity otherwise. Note that this operator short-circuits, and does not evaluate its second argument if the first is false. See & for bitwise "and".

expr { [a b c] && [d e f] }

Note that this operator does not have a command equivalent in tcl::mathop; use the if command instead.