Documentation
  • Coverage
  • 1.92%
    1 out of 52 items documented0 out of 51 items with examples
  • Size
  • Source code size: 4.59 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.79 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • oovm
  • Calculate the number of isomers of alkanes
#[test]
fn count() {
    let cache = SymmetricGroupCache::default();
    for c in 1..=10 {
        println!("{:>2}: {}", c, cache.a000602(c));
    }
}