use core::cmp::Ordering;
use crate::{ContextError, Hash};
use super::Module;
pub trait InstallWith {
fn install_with(_: &mut Module) -> Result<(), ContextError> {
Ok(())
}
}
impl InstallWith for i64 {}
impl InstallWith for u64 {}
impl InstallWith for f64 {}
impl InstallWith for char {}
impl InstallWith for bool {}
impl InstallWith for Ordering {}
impl InstallWith for Hash {}