1 2 3 4 5 6 7 8 9 10 11 12 13 14
use crate::macros::dispatch; pub use remove::dispatch as remove; #[dispatch] mod remove { use crate::CelValue; fn remove(mut this: String, pattern: String) -> String { this.remove_matches(&pattern); this } }