apple-quant-algorithmic 0.3.0

Apple Quant's algorithmic library.
1
2
3
4
5
6
7
8
9
10
11
mod sub;
mod whole;

pub use sub::*;
pub use whole::*;

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Points {
	Whole(WholePoints),
	Sub(Subpoints),
}