optempty 0.1.13

Tools for working types that may be empty. E.g., an empty `String`, `Vec`, `HashMap`, etc.
Documentation
1
2
3
4
5
6
7
8
9
use query_map::QueryMap;

use super::IsEmpty;

impl IsEmpty for QueryMap {
    fn is_empty(&self) -> bool {
        QueryMap::is_empty(self)
    }
}