wtools 0.2.20

Collection of general purpose tools for solving problems. Fundamentally extend the language without spoiling, so may be used solely or in conjunction with another module of such kind.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
crate::mod_interface!
{
  /// Implements canonical factory where each node in a cell.
  #[ cfg( feature = "cell_factory" ) ]
  layer cell_factory;
  /// Implements canonical edge.
  layer edge;
  /// Implements canonical factory.
  layer factory;
  /// Implements several identities.
  layer identity;
  /// Implements canonical node.
  layer node;
  /// Implements node cell.
  #[ cfg( feature = "cell_factory" ) ]
  layer node_cell;
}