<!-- {{# generate.module_header{} #}} -->
# Module :: graphs_tools
<!--{ generate.module_header.start() }-->
[](https://github.com/emersion/stability-badges#experimental) [](https://github.com/Wandalen/wTools/actions/workflows/module_graphs_tools_push.yml) [](https://docs.rs/graphs_tools) [](https://gitpod.io/#RUN_PATH=.,SAMPLE_FILE=module%2Fmove%2Fgraphs_tools%2Fexamples%2Fgraphs_tools_trivial.rs,RUN_POSTFIX=--example%20graphs_tools_trivial/https://github.com/Wandalen/wTools) [](https://discord.gg/m3YfbXpUUY)
<!--{ generate.module_header.end }-->
**NOT ready for production**
<!--
### Basic use-case
```rust
#[ cfg( all( feature = "cell_factory", feature = "use_std" ) ) ]
{
use graphs_tools::prelude::*;
use wtools::prelude::*;
let node : graphs_tools::canonical::Node = from!( 13 );
assert_eq!( node.id(), 13.into() );
println!( "{:?}", node );
/* print : node::13 */
}
```
### To add to your project
```bash
cargo add graphs_tools
```
### Try out from the repository
``` shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/graphs_tools_trivial
cargo run
```
-->