Module :: typing_tools
Collection of general purpose tools for type checking.
Basic use-case.
use *;
let src = Box new;
assert_eq!;
assert_eq!;
To add to your project
Try out from the repository
Collection of general purpose tools for type checking.
use typing_tools::*;
let src = Box::new( true );
assert_eq!( implements!( src => Copy ), false );
assert_eq!( implements!( src => Clone ), true );
cargo add typing_tools
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/typing_tools_trivial
cargo run