Module :: typing_tools

experimental rust-status docs.rs discord

Collection of general purpose tools for type checking.

Sample

```rust use typing_tools::*;

fn main() { let src = Box::new( true ); asserteq!( implements!( src => Copy ), false ); asserteq!( implements!( src => Clone ), true ); } ```

To add to your project

sh cargo add typing_tools

Try out from the repository

sh git clone https://github.com/Wandalen/wTools cd wTools cd sample/rust/typing_tools_trivial cargo run