[Hash.symbol](this: BigDecimal): number {
const normalized = normalize(this)
return pipe(
Hash.hash(TypeId),
Hash.combine(Hash.hash(normalized.value)),
Hash.combine(Hash.number(normalized.scale))
)
},
[Hash.symbol](this: BigDecimal): number {
const normalized = normalize(this)
return pipe(
Hash.hash(TypeId),
Hash.combine(Hash.hash(normalized.value)),
Hash.combine(Hash.number(normalized.scale))
)
},