#![ cfg_attr( feature = "no_std", no_std ) ]
#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/graph_logo_v1_trans.png" ) ]
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/graph_logo_v1_trans.ico" ) ]
#![ doc( html_root_url = "https://docs.rs/graphs_tools/latest/graphs_tools/" ) ]
#![ deny( unused_imports ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
#![ allow( unused_imports ) ]
use iter_tools::iter;
use data_type::dt;
use meta_tools::meta;
use strs_tools::string;
use meta_tools::mod_interface;
mod_interface!
{
#[ cfg( not( feature = "no_std" ) ) ]
layer abs;
#[ cfg( not( feature = "no_std" ) ) ]
layer canonical;
#[ cfg( not( feature = "no_std" ) ) ]
layer algo;
own use ::meta_tools::prelude::*;
}