tangram_zip 0.7.0

Tangram makes it easy for programmers to train, deploy, and monitor machine learning models.
Documentation
1
2
3
4
5
6
#[macro_export]
macro_rules! pzip {
	($($e:expr),* $(,)*) => {
		rayon::iter::IntoParallelIterator::into_par_iter(($($e,)*))
	};
}