gpt4 book ai didi

swift - 如何将集合的 Swift 扩展限制为泛型类型?

转载 作者:行者123 更新时间:2023-12-04 10:29:44 25 4
gpt4 key购买 nike

因为元组在 Swift 中不可散列,所以我创建了一个通用的 struct Couple 来包含两个元素,这些元素组合起来可以用作字典的键。

struct Couple<U: Hashable, V: Hashable>: Hashable {
let u: U
let v: V

init( _ u: U, _ v: V ) {
self.u = u
self.v = v
}
}
var dictionary: [ Couple<Int,Int> : Any ] = ...

现在,我想一般使用 Couple 来扩展 Dictionary。
extension Dictionary where Key == Couple<U: Hashable, V: Hashable>, Value == Any {
func exampleConvertToArray() -> [ ( U, V, Any ) ] {
}
}

无论我在扩展语句中如何引用 Couple、U、V,编译器都会提示。如果我改为将泛型添加到函数定义中,编译器也会提示。

如果类型不是通用的( extension Dictionary where Key == Couple<Int, Int>, Value == Any ),一切都很好。

如何创建这个通用扩展?

最佳答案

这是可能的,但不幸的是,通用约束必须在成员本身上表达,而不是在整个 extension 上表达。 :

struct Couple<U: Hashable, V: Hashable>: Hashable {
let u: U
let v: V

init( _ u: U, _ v: V ) {
self.u = u
self.v = v
}
}

extension Dictionary {
func exampleConvertToArray<U, V>() -> [(U, V, Any)] where Key == Couple<U, V> {
self.map { (key, value) in (key.u, key.v, value) }
}
}

let input = [
Couple(1, 2): 3,
Couple(4, 5): 6,
Couple(7, 8): 9,
]

let result = input.exampleConvertToArray()
print(result)

关于swift - 如何将集合的 Swift 扩展限制为泛型类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60470848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com