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
//! # narrow
//!
//! A Rust implementation of [Apache Arrow](https://arrow.apache.org).

mod primitive;
pub use primitive::*;

mod buffer;
pub use buffer::*;

mod bitmap;
pub use bitmap::*;

mod nullable;
pub use nullable::*;

mod validity;
pub use validity::*;

mod offset;
pub use offset::*;

mod array;
pub use array::*;

// Export derive macro(s).
pub use narrow_derive::*;

// Allow writing derive macro tests in this crate.
extern crate self as narrow;