sukker 2.0.2

Linear Algebra and Matrices made easy!
Documentation
1
2
3
4
5
pub fn swap(lhs: &mut usize, rhs: &mut usize) {
    let temp = *lhs;
    *lhs = *rhs;
    *rhs = temp;
}