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

18 lines
223 B
Rust
Raw Normal View History

2020-12-02 23:56:22 +08:00
//! TODO
2020-12-10 20:30:37 +08:00
mod impl_std_ops;
2020-12-02 23:56:22 +08:00
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
}
2020-12-10 20:30:37 +08:00
}