Initial commit

This commit is contained in:
Volodymyr Orlov
2019-05-28 17:46:03 -07:00
parent f0275e2fc4
commit f4d3a80490
14 changed files with 285 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
pub mod euclidian;
use num_traits::Float;
pub trait Distance<T, A>
where
A: Float
{
fn distance(a: &T, b: &T) -> A;
}