Logical negation operator in F#? (!-equivalent)

f#, functional-programming

Solution

According to "Foundations of F#", page 61:

F# uses a function called `not` for Boolean "not" operations.

Problem

What is the equivalent to the C# "!" operator in F#?

Original source