Skip to main content

ct_regex/
iter.rs

1//! A collection of [`Iterator`]s used in return types for Regex methods. Although also usually
2//! inferred, these may be needed to name types in some cases.
3//!
4//! Unfortunately, all of these types have many type parameters. To make code more concise, try
5//! elliding them where possible with `_`. [`Regex::Pattern`](crate::Regex) should be used to obtain
6//! the `Matcher` type if required.
7
8pub use ct_regex_internal::expr::{FindAllCaptures, RangeOfAllMatches, SliceAllMatches};