views:

1026

answers:

3

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

Thanks, Jacob

+12  A: 

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

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

Jon Skeet
+2  A: 

See

http://research.microsoft.com/fsharp/manual/FSharp.Core/Microsoft.FSharp.Core.Operators.html

for more.

Brian
reference docs are now here: http://msdn.microsoft.com/en-us/library/ee353754(v=VS.100).aspx
Mauricio Scheffer
A: 

you can also use "<>"