in C# there is code like this
int someVariable=10;
--someVariable; //what is the meaning?
what about in F#? can i do like in C# code?
|
feedback
|
|
The
and the value of
and the value of I don't think F# has it. | |||
|
feedback
|
|
It means the same thing as someVariable = someVariable - 1. The result would be 10 - 1, or 9. | |||
|
feedback
|
|
Others have explained
Since users are aware of mutability using As @Daniel said in the comment, you could also use a reference cell and decr function for the same purpose. | |||||||||
feedback
|
|
To clarify, the meaning of --someVariable is:
as opposed to someVariable--, which means:
( which is not valid as it stands, but gives you the idea ); There are equivalent prefix and postfix ++ operators. In reality, the postfix ++ operator is the most commonly used by a long way, although it is important to know about the others. The double semi-colons at the end are wrong, but not invalid. It looks like someone has copied form somewhere else, or is used to writing in a different language. | |||
feedback
|
someVar = someVar - 1;– juergen d Feb 4 at 18:10;;. Although it is valid C#, it's very unusual to do it. – svick Feb 4 at 18:12