Created
March 18, 2019 15:47
-
-
Save michaeleisel/2124d7050e87f0d00a672fc6856935eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Equatable where Self: Sequence { | |
public static func == (lhs: Sequence<Element>, rhs: Sequence<Element>) -> Bool { | |
return elementsEqual(lhs, rhs) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment