兩種宣告方式之間有什麼差異?
// 會帶真實型別進去 | |
func doSomething<T: MyPotocol>(_ arg: T) { } | |
// 有 existentail container | |
func doSomething(_ arg: MyProtofcol) { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment