Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dolphinsue319/b9201ee8aa5f337075a1 to your computer and use it in GitHub Desktop.
Save dolphinsue319/b9201ee8aa5f337075a1 to your computer and use it in GitHub Desktop.
指定泛型參數必須是實作了某種 protocol 的例子
func ~=<T: Comparable, U: Equatable>(pattern: T, value: U) -> Bool {
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment