1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// R Vectors module
///
/// This module is for handling of vectorized operators in R. All the numeric
/// coercion is handled within rust's type system. It is pretty faithful to
/// R's vector types, but there is room for improvement.
///
pub mod coercion;
pub mod iterators;
pub mod rep;
pub mod types;

mod subsets;
pub use subsets::*;

mod subset;
pub use subset::*;

mod core;
pub use core::*;