analytic 0.3.7

A math library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod trait_impl;

pub trait Constructable {
    fn new() -> Self;
}

pub trait Collecting<E> {
    fn collect(&mut self, item: E);
}

pub trait SubsetIndexable<S> {
    fn get_set_containing(&self, subset: &S) -> Option<S>;
}

pub trait ToIterator<'s, I: Iterator<Item=R>, R> {
    fn to_iter(&'s self) -> I;
}