rampart 0.1.1

Rampart determines how intervals relate to each other.
Documentation
  • Coverage
  • 0%
    0 out of 23 items documented0 out of 7 items with examples
  • Size
  • Source code size: 11.4 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.69 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • gtnao/rust-rampart
    12 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • gtnao0219

rust-rampart

Rust implementation of the Haskell Rampart library by Taylor Fausak.

Usage

Add this to your Cargo.toml:

[dependencies]
rampart = "0.1.1"

Examples

let a = Interval::new(2, 3);
let b = Interval::new(3, 7);
let rel = a.relate(&b); 
# Relation::Meets