I'm trying to do an XOR operation in Swift 5. The documentation does not seem to mention explicitly doing it with two boolean values here:
https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html
Is this possible? It says to use the ^ operation but I get the error when trying:
card != nil ^ appointment.instructor == nil
ERROR Adjacent operators are in non-associative precedence group 'ComparisonPrecedence'
^can't be applied toBool. Use!=instead. What are you doing with the above statement? Throw in some()to keep it sane. You don't seem to be assigning it to a variable or testing it.