gpt4 book ai didi

swift - 如何将此函数编写为 Dictionary 的扩展

转载 作者:行者123 更新时间:2023-11-28 08:25:04 24 4
gpt4 key购买 nike

我有一个工作函数,我宁愿使用 where 子句将其编写为字典的扩展。但是,当我使用 where 子句时,我无法访问 enumerated() 方法。

我的工作职能:

func trueKeys(dictionary: [String: Any]) -> [String:Bool] {
var trueKeys = [String:Bool]()
dictionary.enumerated().forEach({ trueKeys[$1.key] = true })
return trueKeys
}

我的目标是完成同样的事情:

extension Dictionary where Key: String, Value: Any {
func trueKeysDictionary() -> [String:Bool] {
var trueKeys = [String:Bool]()
self.enumerated().forEach({ trueKeys[$1.key] = true })
return trueKeys
}
}

这可能吗?

最佳答案

extension Dictionary {
func trueKeysDictionary() -> [Key: Bool] {
var trueKeys = [Key: Bool]()
self.keys.forEach { trueKeys[$0] = true }
return trueKeys
}
}

关于swift - 如何将此函数编写为 Dictionary 的扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40273628/

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