Details
Description
Here's the JIRA discussion about Avish suggestion.
If approved we would get a shortcut syntax as in C# to declare nullable types.
Example:
x = int?
instead of :
x = Nullable of int
Issue Links
- is related to
-
BOO-619
Shortcuts to interfaces
-
For generic structs, the '?' should come before the generic parameters as in:
Otherwise the following code becomes ambiguous (possibilities in comments):