Implement hash for Dec

This commit is contained in:
Ayaz Hafiz 2023-05-26 11:32:59 -05:00
parent 0b475ae979
commit 3585d5bb5b
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
12 changed files with 44 additions and 6 deletions

View file

@ -368,6 +368,7 @@ pub const LIST_RELEASE_EXCESS_CAPACITY: &str = "roc_builtins.list.release_excess
pub const DEC_FROM_STR: &str = "roc_builtins.dec.from_str";
pub const DEC_TO_STR: &str = "roc_builtins.dec.to_str";
pub const DEC_FROM_F64: &str = "roc_builtins.dec.from_f64";
pub const DEC_TO_I128: &str = "roc_builtins.dec.to_i128";
pub const DEC_EQ: &str = "roc_builtins.dec.eq";
pub const DEC_NEQ: &str = "roc_builtins.dec.neq";
pub const DEC_NEGATE: &str = "roc_builtins.dec.negate";