16 releases (10 breaking)
| 0.11.0 | Jun 21, 2025 |
|---|---|
| 0.10.0 | Oct 30, 2024 |
| 0.9.0 | Sep 14, 2024 |
| 0.8.0 | May 11, 2024 |
| 0.1.0 | Jan 10, 2022 |
#2920 in Algorithms
1,372 downloads per month
Used in 38 crates
(3 directly)
34KB
366 lines
Module :: typing_tools
Collection of general purpose tools for type checking.
Basic use-case
use typing_tools::*;
let src = Box::new( true );
assert_eq!( implements!( src => Copy ), false );
assert_eq!( implements!( src => Clone ), true );
To add to your project
cargo add typing_tools
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/typing_tools_trivial
cargo run