rscel 1.0.8

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

pub use methods::dispatch as split_whitespace;

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

    fn split_whitespace(this: String) -> Vec<CelValue> {
        this.split_whitespace().map(|t| t.into()).collect()
    }
}