apple_quant_algorithmic/volume/
match_reduce.rs1use crate::points::Subpoints;
2
3#[derive(Debug, Clone, PartialEq, Eq)]
4pub struct MatchReduceResult<T> {
5 pub new_matched: Option<T>,
6 pub new_matcher: Option<T>,
7 pub matched_quantity: Subpoints,
8}