wmath/
wmath_lib.rs

1#![ cfg_attr( not( feature = "use_std" ), no_std ) ]
2#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
3#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
4#![ doc( html_root_url = "https://docs.rs/data_type/latest/wmath/" ) ]
5#![ warn( rust_2018_idioms ) ]
6#![ warn( missing_debug_implementations ) ]
7#![ warn( missing_docs ) ]
8
9// #![ feature( trait_alias ) ]
10// #![ feature( generic_associated_types ) ]
11// #![ feature( type_name_of_val ) ]
12// #![ feature( generic_associated_types ) ]
13
14//!
15//! Math library with adapters.
16//!
17
18#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
19
20use meta_tools::mod_interface;
21
22/// Dependencies.
23pub mod dependency
24{
25  pub use ::math_adapter;
26}
27
28pub use ::math_adapter as adapter;
29
30crate::mod_interface!
31{
32
33  /// Basic.
34  layer basic;
35
36  use ::math_adapter;
37
38}