A 54-bit signed integer abstraction. Created for easier interop with GraphQL and Javascript, which don't have proper i64-compatible primitives.
Both Javascript and GraphQL natively represent large (over 32-bit) integers as signed double-precision floating-point values, and do not have primitives representing large integers.
This presents a problem when wanting to represent an integer larger than a u32
in Rust, while maintaining type interop with Javascript and GraphQL.
To make programmer intent clear, we provide an i54
type that should ideally behave similarly to a Rust primitive type, and is intended to represent values that would fit in a hypothetical 54-bit signed integer primitive.
i54
represents the largest signed integer for which all possible values are encoded exactly by an IEEE 754 double-precision floating-point representation. (Encoded roughly as 52 bits in the mantissa, 1 bit derived from the exponent bits, and 1 sign bit.)
serde
- Serialize
, Deserialize
rusqlite
(optional) - FromSql
, ToSql
juniper
(optional) - GraphQLScalar
toml
[dependencies]
i54_ = {version = "0.1", features = ["rusqlite", "juniper"]}
```rust use i54_::i54;
fn main() { let mut x: i54 = 1.into(); x += 1.into(); assert!(x == 2); } ```