Documentation
#[macro_use]
mod macros;
pub use macros::*;

mod traits;
mod const_expr;
mod binary;
mod unary;
mod gep;
mod icmp;
mod fcmp;

pub use traits::*;
pub use const_expr::*;
pub use binary::*;
pub use unary::*;
pub use gep::*;
pub use icmp::*;
pub use fcmp::*;