pytools-rs 0.1.1

Miscellaneous tools referenced by DSL compilers/scientific-computing toolchains.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A set of tools that find their use across several frameworks. Borrowed lots of ideas
//! from [Pytools](https://documen.tician.de/pytools/).
//!
//! - [`unique_name_generator`]: generate names while avoiding collisions in a
//!   namespace.
//! - [`show_graphviz`]: visualize graphviz graphs.
pub mod show_graphviz;
pub mod unique_name_generator;

pub use show_graphviz::{show_dot, ConvertibleToDotOutputT, DotOutputT};
pub use unique_name_generator::{make_unique_name_gen, UniqueNameGenerator};