reifydb_type/value/number/
mod.rs

1// Copyright (c) reifydb.com 2025
2// This file is licensed under the MIT, see license.md file
3
4mod compare;
5mod parse;
6mod promote;
7mod safe;
8
9pub use compare::*;
10pub use parse::{parse_float, parse_primitive_int, parse_primitive_uint};
11pub use promote::Promote;
12pub use safe::{
13	add::SafeAdd, convert::SafeConvert, div::SafeDiv, mul::SafeMul, remainder::SafeRemainder, sub::SafeSub,
14};