Function boolean_to_string

Source
pub fn boolean_to_string(b: bool) -> String
Expand description

Implement a function which convert the given boolean value into its string representation.

§Example

boolean_to_string(true);
returns “true”