[][src]Function is::is_bools

pub fn is_bools<V: Any + ?Sized>(_: &V) -> bool

Checks if 'static value is of type bool

Examples

assert_eq!(is_bools(&true), true);
assert_eq!(is_bools(&0), false);