matrix 0.21.10

The package provides a matrix laboratory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::convert::Into;

use Element;
use format::Conventional;

impl<T: Element> Into<Vec<T>> for Conventional<T> {
    #[inline]
    fn into(self) -> Vec<T> {
        self.values
    }
}