Initial work on outlining the dynamic side of the library.

This commit is contained in:
2021-01-31 17:31:22 +01:00
parent 2a08fb2645
commit c194c5d209
24 changed files with 321 additions and 39 deletions

View File

@@ -2,7 +2,7 @@ use super::statistics::Statistic;
use derive_getters::Getters;
use num_traits::PrimInt;
#[derive(Default, Eq, PartialEq, Debug, Getters)]
#[derive(Default, Eq, PartialEq, Copy, Clone, Debug, Getters)]
pub struct StatisticSet<T>
where
T: PrimInt,