I was able to overload ??
operator without much trouble. However, ?
operator keeps resisting. I want to overload it as binary infix operator.
Here is what I did with ??
:
infix operator ?? {associativity right precedence 110}
public func ?? (condition: Bool, asignment: @autoclosure () -> ()) {
... //some execution
}
The same does not work for ?
- if I skip infix operator ? ...
I get compile error that such operator does not exist. If I include it I get compile error on that line.
Was somebody able to overload it? Or somebody authoritative to (from Swift team?) to confirm that it is not intended to be overloaded? If so, what are the reasons?
No, you can't override
?
-- it's a reserved operator in all three positions. From the Swift language docs: