Where can I find the implementation of the ternary operator?

I’m looking on GitHub - apple/swift: The Swift Programming Language and trying to find the implementation of the ternary ?: operator, but I can’t seem to locate it.

The ternary operator is hard-coded in the language. :+1:

(Along with other operators, such as the ones related to Optional.)

2 Likes

Thanks!