4 つの論理演算子がある理由:
&, &&
|, ||
使い方の違いは?
はい、ドキュメントを確認しましたが、少し混乱しています。ドキュメントには次のように記載されています。
‘&’ and ‘&&’ indicate logical AND and ‘|’ and ‘||’ indicate
logical OR. The shorter form performs elementwise comparisons in
much the same way as arithmetic operators. The longer form
evaluates left to right examining only the first element of each
vector. Evaluation proceeds only until the result is determined.
The longer form is appropriate for programming control-flow and
typically preferred in ‘if’ clauses.
一例がそれらを明確に示すと思います。ありがとう。