Created
March 31, 2019 18:03
-
-
Save polac24/919b6fd97fc5aad9a342ceba40665413 to your computer and use it in GitHub Desktop.
This file contains 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 ArgRecords: Equatable where T: Equatable{ | |
static func == (lhs: ArgRecords<T>, rhs: ArgRecords<T>) -> Bool { | |
return lhs.history == rhs.history | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment