Store the mantissa as a Box<[Word]>
rather than a vector
#27
Labels
question
Further information is requested
Box<[Word]>
rather than a vector
#27
Is there ever a need to resize the mantissa vector? A possible optimization could be to store
Box<[Word]>
rather thanVec<Word>
, which reduces the size ofBigFloat
from 40 bytes to 32.The text was updated successfully, but these errors were encountered: