1
2
3
4
5
6
7
#![allow(clippy::cast_possible_truncation)]

pub use boolean::*;
pub use integer::*;

mod boolean;
mod integer;