F.E.L.T.

Functionally Equivalent Language Translation

LOGICAL AND

(and expr-1 expr-2 ... exprN)

See also OR / || NOT

This is the usual "logical AND" instruction which will evaluate to "true" if all of the terms within it also evaluate to "true". Some back-end languages use short-circuiting and some do not so you will have to research how the rendered code operates on each chosen backend.