infix operator && { associativity left precedence 120 } Declarations @inline(__always) func && <T : BooleanType, U : BooleanType>(_: T, rhs: @autoclosure () -> U) If lhs is false, return it. Otherwise, evaluate rhs and return its boolValue. Declaration @inline(__always) func &&<T : BooleanType, U : BooleanType>(lhs: T, rhs: @autoclosure () -> U) -> Bool func && <T : BooleanType>(_: T, rhs: @autoclosure () -> Bool) Declaration func &&<T : BooleanType>(lhs: T, rhs: @autoclosure () -> Bool) -> Bool