Created
May 14, 2017 22:02
-
-
Save chriswebb09/7679cae2e6dc9bf19b0b98b8b1df6aeb 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
| class HashElement<T: Hashable, U> { | |
| var key: T | |
| var value: U? | |
| init(key: T, value: U?) { | |
| self.key = key | |
| self.value = value | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment