isx 0.1.6

Traits for checking certain conditions of values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::default_impl;
use alloc::{
    collections::{BTreeMap, BTreeSet, BinaryHeap},
    string::String,
    vec::Vec,
};

default_impl!(String);
default_impl!(Vec<T>);
default_impl!(BTreeSet<T>);
default_impl!(BTreeMap<K,V>);
default_impl!(BinaryHeap<T>);