1//! String search builtins. 2 3pub mod contains; 4pub mod endswith; 5pub mod startswith; 6pub mod strfind; 7pub(crate) mod text_utils;