@&&(value, value) ; listable
functional prefix form of the infix logical conjunction. Contrary to the
&&
operator, the functional form is not lazy, cf. sect. [lazy
logical operator]: so @&&(a, b)
evaluates b
irrespectively of the
value of a
.
See also @||.