Is it possible to overload "?" operator?

64 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

No, you can't override ? -- it's a reserved operator in all three positions. From the Swift language docs:

The tokens =, ->, //, /*, */, ., the prefix operators <, &, and ?, the infix operator ?, and the postfix operators >, !, and ? are reserved. These tokens can’t be overloaded, nor can they be used as custom operators.