rscel 1.0.8

Cel interpreter in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rscel_macro::dispatch;

pub use trim_start_matches::dispatch as trim_start_matches;

#[dispatch]
mod trim_start_matches {
    use crate::CelValue;

    fn trim_start_matches(this: String, pattern: String) -> String {
        this.trim_start_matches(&pattern).to_owned()
    }
}