Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 14, 2017 22:02
Show Gist options
  • Select an option

  • Save chriswebb09/7679cae2e6dc9bf19b0b98b8b1df6aeb to your computer and use it in GitHub Desktop.

Select an option

Save chriswebb09/7679cae2e6dc9bf19b0b98b8b1df6aeb to your computer and use it in GitHub Desktop.
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