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
This changes the internal length type from u32 to u16 on 16-bit targets. On 16-bit targets larger arrays won't be used, 32-bit arithmetic can be expensive, and 4 bytes is a significant overhead.
target_pointer_width is not going to be smaller than "16", so #[cfg(not(target_pointer_width = "16"))] is sufficient to mean > 16.
Rustup doesn't ship a 16-bit target by default, so unfortunately it's not easy to add a compile test for it, but the tests pass with u16LenUint on larger platforms.
It's not a breaking change from the API perspective. The API and external types stay the same, only the internal representation changed, and only on 16-bit targets. Per hyrum's law somebody could be relying on particular values of sizeof or transmute, but I don't think these are promised by semver.
This is not a breaking change AFAICT, because capacities greater than u16::MAX cannot be allocated on such machines anyway. This means that there will be a compile-time error for capacities larger than u16::MAX before and after this PR (on 16-bit platforms).
We change the underlying length integer which is not exposed and cannot be observed without mem::transmute or mem::size_of, but these kinds of changes do not count as breaking change (and it would be insane if they did — you couldn't change any private struct member).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This changes the internal length type from
u32tou16on 16-bit targets. On 16-bit targets larger arrays won't be used, 32-bit arithmetic can be expensive, and 4 bytes is a significant overhead.target_pointer_widthis not going to be smaller than "16", so#[cfg(not(target_pointer_width = "16"))]is sufficient to mean > 16.Rustup doesn't ship a 16-bit target by default, so unfortunately it's not easy to add a compile test for it, but the tests pass with
u16LenUinton larger platforms.