Struct any_library::TypeChecker
source · pub struct TypeChecker<T>(_);
Implementations§
source§impl<T: 'static> TypeChecker<T>
impl<T: 'static> TypeChecker<T>
sourcepub fn is_unsigned(_: T) -> bool
pub fn is_unsigned(_: T) -> bool
checks if variable is a type of int ranging from u8-usize
sourcepub fn is_integer(_: T) -> bool
pub fn is_integer(_: T) -> bool
checks if variable is a type of int ranging from i8-isize
sourcepub fn is_ref_cell(_: T) -> bool
pub fn is_ref_cell(_: T) -> bool
checks if variable is a RefCell
sourcepub fn is_hash_map(_: T) -> bool
pub fn is_hash_map(_: T) -> bool
checks if variable is a HashMap
sourcepub fn is_binary_heap(_: T) -> bool
pub fn is_binary_heap(_: T) -> bool
checks if variable is a BinaryHeap