I am new to swift (but not new to coding), so I am a little bit cofused with this. I use Kanna but if I have two XMLElements node1 and node2 and I write:
let result = node1 === node2
I get "Binary operator ===
cannot be applied to two 'XMLElement' operands". Is this comparison possible with some other syntax, and if it is impossible, then why and what is the best workaround (I can think of comparing innerHTML it would work in nearly all cases but seems inefficient)?