canrun_basic 0.1.0

Basic goals constructors for the Canrun crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]

//! [Canrun](canrun) related [goal](canrun) functions and other miscellany
//! related to [ops](std::ops).

extern crate canrun;

pub mod cmp;
pub mod ops;

#[doc(hidden)]
pub use cmp::*;
#[doc(hidden)]
pub use ops::*;