What is the best way in F# to write an if not condition?
Right now I'm writing it like this:
if condition <> true then do
Is there any other shorter way to write it? Like using the ! operator?
|
What is the best way in F# to write an if not condition? Right now I'm writing it like this:
Is there any other shorter way to write it? Like using the ! operator? |
|||
|
In Ocaml, you can use the "not" keyword:
Hopefully works too with F#. |
|||||||||||||
|
|
if you consider that not is also a function, then you can pipe your condition into it to avoid parenthesis like so:
reason being is if your condition function takes arguments, you don't need to do
it's probably a little cleaner to do it the first way since it seems f# is in favor of pipes instead of parenthesis for operator precedence. |
|||
|
|
There is the not function, but it only works with boolean variables. So you can say:
But that would not work with other types as in C-style languages. Do not use See the full operator documentation. |
||||
|
|
|
I don't know F# but in C, using the ! operator I'd write:
which is the same as
|
|||||||||||||
|
<>. – Orbling Dec 11 '10 at 21:03