1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Backend for vector operations

// imports

// [[file:~/Workspace/Programming/gchemol-rs/vecfx/vecfx.note::*imports][imports:1]]
use std::f64;
// imports:1 ends here

// mods

// [[file:~/Workspace/Programming/gchemol-rs/vecfx/vecfx.note::*mods][mods:1]]
#[cfg(feature = "nalgebra")]
mod projection;

mod stats;
mod vector;
mod iterator;
// mods:1 ends here

// pub

// [[file:~/Workspace/Programming/gchemol-rs/vecfx/vecfx.note::*pub][pub:1]]
pub use crate::stats::*;

#[cfg(feature = "nalgebra")]
pub use projection::*;

pub use crate::vector::*;

#[cfg(feature = "nalgebra")]
pub use nalgebra;

pub use crate::iterator::FloatIterExt;

#[cfg(feature = "nalgebra")]
pub use crate::iterator::na::*;
// pub:1 ends here