nalgebra/nalgebra-sparse/src/ops/mod.rs

14 lines
202 B
Rust
Raw Normal View History

2020-12-02 23:56:22 +08:00
//! TODO
pub mod serial;
/// TODO
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct Transpose(pub bool);
2020-12-02 23:56:22 +08:00
impl Transpose {
2020-12-02 23:56:22 +08:00
/// TODO
pub fn to_bool(&self) -> bool {
self.0
2020-12-02 23:56:22 +08:00
}
}