I see that "é" ("\u{E9}"
, 1 code point), and "e" + acute ("\u{65}\u{301}"
, 2 code points) are equal, which is great.
The documentation of ==
for Character
is inherited from Equatable
and does not explain its rules. On the other hand, I have looked around Annex #29 without luck. Does Swift implement its own logic?
In either case, how is character equality determined in Swift?
Since
Swift
is an open-source language, you can check the implementation of built-in methods on GitHub.You can find the equality operator of
Character
here.As you can see, internally,
Character
can be initialised from aString
and the==
operator forCharacter
uses that internalString
property to compare twoCharacter
s.You can find the implementation of
==
forString
in StringComparable.swift