#![doc(html_root_url = "https://docs.rs/kohebi-core/0.0.0")]
pub mod casing;
pub mod classify;
pub mod dict;
pub mod error;
pub mod exception;
pub mod float;
pub mod hash;
pub mod int;
pub mod native;
pub mod object;
pub mod ops;
pub mod printable;
pub(crate) mod ranges;
pub mod slice;
pub mod text;
pub use dict::{Dict, Set};
pub use error::{Error, Kind, Result};
pub use exception::Exception;
pub use float::{DotZero, float_repr};
pub use hash::{Key, Unhashable};
pub use int::{DivideByZero, Int};
pub use native::Native;
pub use object::Object;
pub use ops::Compare;
pub use printable::is_printable;
pub use slice::{Indices, Slice};
pub use text::{Str, StrBuf, bytes_repr, str_repr};
pub const SPEC: &[&str] = &[
"docs/spec/03-object-model.md",
"docs/spec/04-memory-and-gc.md",
];