1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod compare;
pub mod compose;
pub mod convert;

// Studied functions not given to 'text' trait but should be implemented in this lib
/*fn text_contains(&self, other: &Value) -> Value;
fn text_ends_with(&self, other: &Value) -> Value;
fn text_is_ascii(&self) -> Value;
fn text_len(&self) -> Value;
fn text_replace(&self, from: &Value, to: &Value) -> Value;
fn text_to_lowercase(&self) -> Value;
fn text_to_uppercase(&self) -> Value;
fn text_trim(&self) -> Value;
fn text_trim_start(&self) -> Value;
fn text_trim_start_matches(&self, trim: &Value) -> Value;
fn text_trim_end(&self) -> Value;
fn text_trim_end_matches(&self, trim: &Value) -> Value;*/