我今天尝试将我的项目转换为Swift 4。 我在这一行上有错误:
return Forum.threads?.filter({ //... })
错误说:
模糊地使用'过滤器'
找到这个候选人(Swift.Set)
找到这个候选人(Swift.Sequence)
threads
对象在Forum
:
var threads: Set<Thread>?
那么如何解决这个问题呢?谢谢你的帮助
编辑:当在日志中显示错误时,以下是候选人:
Swift.Set:369:17: note: found this candidate
public func filter(_ isIncluded: (Set.Element) throws -> Bool) rethrows -> Set<Element>
^
Swift.Sequence:35:17: note: found this candidate
public func filter(_ isIncluded: (Self.Element) throws -> Bool) rethrows -> [Self.Element]