Crate type_utilities

Source
Expand description

§Type_utilities

This crate adds more methods / utilities to the built-in data types

Every type is divided in modules, some types that are similar such as String and &str or vec and [T] are all packaged under the same module (in this case strings and vec respectively)

Every module is optional, meaning if you only want the bool module then you can do that by only including bool in the features section

Modules§

bool
option
result
strings
This modules contains the trait that define new methods for String and &str
vec
This modules contains the trait that define new methods for Vec<T> and [T]