F# keyword ‘Some’
Some is not a keyword. There is an option type however, which is a discriminated union containing two things: Some which holds a value of some type. None which represents lack of value. It’s defined as: type ‘a option = | None | Some of ‘a It acts kind of like a nullable type, where … Read more