Skip to main content

rcomb/
lib.rs

1#[cfg(feature = "rayon")]
2pub use rayon;
3
4pub mod object;
5pub mod collections;
6
7#[cfg(test)]
8mod tests {
9    use super::object::*;
10    use super::collections::*;
11
12    #[test]
13    fn it_works() {
14        assert!(true);
15    }
16}