You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
InfiniInt<T> stores an array at the moment. I've occasionally thought about storing an enum that contains an array or one element. After more deliberation, I believe a tagged pointer (#43) is a better optimization. The latter ensures that the inline model fits in a register and there are still ptr - 1 bits to work with.
The text was updated successfully, but these errors were encountered:
InfiniInt<T> stores an array at the moment. I've occasionally thought about storing an enum that contains an array or one element. After more deliberation, I believe a tagged pointer (#43) is a better optimization. The latter ensures that the inline model fits in a register and there are still
ptr - 1
bits to work with.The text was updated successfully, but these errors were encountered: