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

Viewed 10857

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

3 Answers

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

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

Related