Aatch / ramp

RAMP - Rust Arithmetic in Multiple Precision
Apache License 2.0
261 stars 38 forks source link

Converted Int's internal storage from a raw pointer to Unique. This a… #2

Closed gereeter closed 9 years ago

gereeter commented 9 years ago

…utomatically provides the correct Send/Sync impls, provides an extra barrier to accidentally mutating supposedly immutable data, and allows Option to take less space.

Aatch commented 9 years ago

Ah, thanks. I thought about doing that, but had written most of the code already and couldn't be bothered going through and changing everything.