Function cel_interpreter::functions::ends_with

source ·
pub fn ends_with(This: This<Arc<String>>, suffix: Arc<String>) -> bool
Expand description

Returns true if a string ends with another string.

§Example

"abc".endsWith("c") == true