The is_not_empty() method as more clearly alternative for !is_empty()

use std::ops::Not;
println!("{:?}", true.not());

:wink:

37 Likes