fastnum2 0.3.5

fork of Fast decimal numbers library
Documentation
1
2
3
4
5
6
7
8
9
10
use core::hash::{Hash, Hasher};

use crate::decimal::UnsignedDecimal;

impl<const N: usize> Hash for UnsignedDecimal<N> {
    #[inline]
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.0.hash(state);
    }
}