Closed clarfonthey closed 7 years ago
The clone_from
isn't the same in the derived version. The derived version just uses the default method from the Clone
trait which isn't as efficient as Int
's clone_from
.
Oh, huh. I was under the impression that the derived version specialised on clone_from
.
I'll remove that part.
I'll just replace this with #89 in that case, then.
round()
doesn't specify what rounding method is used; this updates that.Clone
is just the default, so, I just converted it to a derived version.