url_cleaner_engine/tutorial/cleaner/set.rs
1//! [`Set`]
2//!
3//! A [`Set`] is an optimization over [`HashSet`]s that allows you to check if an `Option<&str>` is in the equivalent of a `HashSet<Option<String>>`.
4//!
5//! Internally this works by having a `HashSet<String>` for `Some("...")` values and a [`bool`] that's [`true`] if the equivalent `HashSet<Option<String>>` has [`None`].
6
7pub(crate) use super::*;