I think this is simple, but I can’t get it.
I wish to create a new operator, e.g. (=??) , that can be used like ‘=’ for property field bindings.
That is the new operator will be used like:
MyProperty =?? NewValue
I would like the (=??) operator to do an Option.get NewValue so as to either return a value to MyProperty or immediately crash if NewValue has option none.
Can this be done in F# ??
Thank you for your consideration.