We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unstable
1 parent 04e2930 commit 27ed3faCopy full SHA for 27ed3fa
README.md
@@ -188,6 +188,16 @@ assert!(!matches.matched(5));
188
assert!(matches.matched(6));
189
```
190
191
+### Usage: enable SIMD optimizations
192
+
193
+This crate provides an `unstable` feature that can only be enabled on nightly
194
+Rust. When this feature is enabled, the regex crate will use SIMD optimizations
195
+if your CPU supports them. No additional compile time flags are required; the
196
+regex crate will detect your CPU support at runtime.
197
198
+When `std::arch` becomes stable, then these optimizations will be enabled
199
+automatically.
200
201
202
### Usage: a regular expression parser
203
0 commit comments