//! Comparison primitive operations.
pub mod eq;
pub mod ge;
pub mod gt;
pub mod le;
pub mod logical_not;
pub mod lt;
pub mod ne;
pub use eq::Eq;
pub use ge::Ge;
pub use gt::Gt;
pub use le::Le;
pub use logical_not::LogicalNot;
pub use lt::Lt;
pub use ne::Ne;