Closed LunNova closed 1 year ago
What's the intended way to deal with these?
dbg!(section.name.iter().map(|x| x.0 as char).filter(|&x| x > '\0').collect::<String>());
I have this for debug printing but I imagine this isn't the intended way and there's something built in already.
I missed as_str implemented here: https://github.com/frank2/exe-rs/blob/8dd6acb6539af12e59b9df6791577432606e0279/src/types.rs#L53
as_str
What's the intended way to deal with these?
I have this for debug printing but I imagine this isn't the intended way and there's something built in already.