We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5ba51 commit ba019f3Copy full SHA for ba019f3
stdlib/public/core/Filter.swift.gyb
@@ -91,6 +91,9 @@ public struct LazyFilterSequence<Base : Sequence>
91
if !_include(element) {
92
return false
93
}
94
+ if let baseContains = base._customContainsEquatableElement(element) {
95
+ return baseContains
96
+ }
97
return nil
98
99
@@ -169,6 +172,9 @@ public struct ${Self}<
169
172
if !_predicate(element) {
170
173
171
174
175
+ if let baseContains = _base._customContainsEquatableElement(element) {
176
177
178
179
180
0 commit comments