1 2 3 4 5 6 7 8 9 10 11
//! String operation specifications (tokenize, split). pub mod tokenize; use crate::OpSpec; /// All string specs. #[inline] pub fn specs() -> Vec<OpSpec> { vec![tokenize::vyre_op()] }