1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use self::{
    array::{ArrayDescription, ArrayKind},
    decimal::{DecimalDescription, DecimalKind},
    integer::{IntegerDescription, IntegerKind},
    typing::XCellTyped,
    value::{color::ColorDescription, time::TimeDescription, XCellValue},
    vector::VectorDescription,
};

pub(crate) mod errors;

mod array;
mod decimal;
mod integer;
mod typing;
mod value;
mod vector;