not 真偽値
真偽値 | 否定の結果 |
否定とは、真偽値を逆転させる演算を行うこと。
trueの場合はfalseに、falseの場合はtrueとなる。
否定の意味を内包している演算子は、notを使って書き換えることができる。
以下に、その対応を示す。
A >= B | not(A < B) |
A <= B | not(A > B) |
A /= B | not(A = B) |
A does not contain B | not(A contain B) |
A does not end with B | not(A end with B) |
A does not start with B | not(A start with B) |
A is not in B | not(A is in B) |
not true