aoc-framework-utils 0.1.0

Utilities such as data types, algorithms and functions for aoc-framework-rs
Documentation
1
2
3
4
5
6
/// Algebraic division ring defining two binary operations and the inverse of an element
pub trait DivisionRing<T> {
  fn add(&self, other: T) -> T;
  fn times(&self, other: T) -> T;
  fn inverse(&self) -> T;
}