Created
October 10, 2015 09:56
-
-
Save dolphinsue319/b9201ee8aa5f337075a1 to your computer and use it in GitHub Desktop.
指定泛型參數必須是實作了某種 protocol 的例子
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
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