Truth Tables for Boolean Functions

The following truth tables apply to Boolean functions.

And truth table

xyx .and. y?
TTT
TFF
FTF
FFF

Exclusive Or truth table

xyx .xor. y?
TTF
TFT
FTT
FFF

Implies truth table

xyx .implies. y?
TTT
TFF
FTT
FFT

Not truth table

x.not. x?
FT
TF

Not And truth table

xy.not. (x .and. y)?
TTF
TFT
FTT
FFT

Not Exclusive Or truth table

xy.not. (x .xor. y)?
TTT
TFF
FTF
FFT

Not Or truth table

xy.not. (x .or. y)?
TTF
TFF
FTF
FFT

Or truth table

xyx .or. y?
TTT
TFT
FTT
FFF