This crates a new type called CloneReal, which is essentially Real but without the copy requirement (and with the clone requirement). This will allow things like BigDecimal to implement CloneReal. All types that implement Real also automatically implements Real.
This crates a new type called
CloneReal
, which is essentiallyReal
but without the copy requirement (and with the clone requirement). This will allow things likeBigDecimal
to implementCloneReal
. All types that implementReal
also automatically implementsReal
.