What is the equivalent to the C# \"!\" operator in F#?
you can also use "<>"
According to "Foundations of F#", page 61:
F# uses a function called not for Boolean "not" operations.
not
See Core.Operators Module (F#) for more.