use std::fmt::Debug;
pub mod iris;
pub mod trees;
#[derive(Clone, Debug)]
pub struct Dataset<D, T> where D: Clone + Debug, T: Clone + Debug {
data: D,
target: T
}
impl<D, T> Dataset<D, T> where D: Clone + Debug, T: Clone + Debug {
pub fn data(&self) -> &D {
&self.data
}
pub fn target(&self) -> &T {
&self.target
}
}