std_mel/text/
mod.rs

1pub mod compare;
2pub mod compose;
3pub mod convert;
4
5// Studied functions not given to 'text' trait but should be implemented in this lib
6/*fn text_contains(&self, other: &Value) -> Value;
7fn text_ends_with(&self, other: &Value) -> Value;
8fn text_is_ascii(&self) -> Value;
9fn text_len(&self) -> Value;
10fn text_replace(&self, from: &Value, to: &Value) -> Value;
11fn text_to_lowercase(&self) -> Value;
12fn text_to_uppercase(&self) -> Value;
13fn text_trim(&self) -> Value;
14fn text_trim_start(&self) -> Value;
15fn text_trim_start_matches(&self, trim: &Value) -> Value;
16fn text_trim_end(&self) -> Value;
17fn text_trim_end_matches(&self, trim: &Value) -> Value;*/