I am curious about some details of work of logical operators in R.

For example, let we have following expression:

A == a & B == b & C == c & D == d &.... and so on.

If A == a gives FALSE, will R evaluate all following operators or will it stop and result FALSE at once?

Similar questions and discussions