[][src]Module onigiri::validator

onigiri::validator contains some functions for validating Vec<char>.

Functions

ends_with

Validate Vec<char> whether it ends with c: char.

is_float

Validate Vec<char> whether it is float.

is_integer

Validate Vec<char> whether it is integer.

is_lower_ascii

Validate Vec<char> whether it is all ascii-lowercase.

is_negative_float

Validate Vec<char> whether it is negative float.

is_negative_integer

Validate Vec<char> whether it is negative integer.

is_positive_float

Validate Vec<char> whether it is positive float.

is_positive_integer

Validate Vec<char> whether it is positive integer.

is_punctuation

Validate Vec<char> whether it is punctuation.

is_title

Validate Vec<char> whether it is title case.

is_upper_ascii

Validate Vec<char> whether it is all ascii-uppercase.

starts_with

Validate Vec<char> whether it starts with c: char.