mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Make filter APIs for UseList chainable by adding them to Sequence where Element == Operand For example, it allows to write: ``` let singleUse = value.uses.ignoreDebugUses.ignoreUsers(ofType: EndAccessInst.self).singleUse ``` Also, add `UseList.getSingleUser(notOfType:)`