apple-quant-algorithmic 0.3.0

Apple Quant's algorithmic library.
1
2
3
4
5
6
7
8
use crate::points::Subpoints;

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct MatchReduceResult<T> {
	pub new_matched: Option<T>,
	pub new_matcher: Option<T>,
	pub matched_quantity: Subpoints,
}