to_string_bool

Macro to_string_bool 

Source
macro_rules! to_string_bool {
    ($value:expr) => { ... };
}
Expand description

Converts a logical value to a string

ยงUsage

use we_cdk::*;

#[action]
fn _constructor() {
    let result: String = to_string_bool!(true);
}