Macro easy_file::read_to_string
source · [−]macro_rules! read_to_string {
($path:expr) => { ... };
}
Expand description
list directory return Vec
ⓘ
if let Ok(_r) = read_to_string!("./foo.txt") {
println!("{}", _r);
}
macro_rules! read_to_string {
($path:expr) => { ... };
}
list directory return Vec
if let Ok(_r) = read_to_string!("./foo.txt") {
println!("{}", _r);
}