Macro chars_to_string

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

Converts a vector or array of chars to a String.

ยงUsage

use suiron::*;

let city_of_light = chars_to_string!(['P', 'a', 'r', 'i', 's']);