1
1
mirror of https://github.com/github/semantic.git synced 2024-12-27 00:44:57 +03:00

== over Fix.

This commit is contained in:
Rob Rix 2015-10-02 14:17:59 -04:00
parent bc857f810b
commit a0e77e2495

View File

@ -24,3 +24,7 @@ extension Fix {
}
}
}
public func == <A: Equatable> (left: Fix<A>, right: Fix<A>) -> Bool {
return Fix.equals(==)(left, right)
}