swiftlang/swift-experimental-string-processing

Add [Sub]String specializations for `contains` and other search algorithms

milseman opened this issue · 0 comments

Right now, contains() calls into the generic 2-way searcher which does Character loading and comparison, instead of doing the fast thing. We should specialize for String types.