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
Unfortunately the mechanism for stating that your value is non-zero is unstable and unlikely to be stabilized soon. As such we're just going to take the hit and use std's Unique:
std::ptr::NonNull is stable since 1.25, while std::ptr::Unique is still feature-gated and even hidden from documentation. This should be updated to avoid unnecessarily using unstable features.
The text was updated successfully, but these errors were encountered:
This was discussed in the comments of #161 but is not currently fixed in that PR. It seems likely that any PR fixing this will have merge conflicts with that one.
Uh oh!
There was an error while loading. Please reload this page.
In src/vec-layout.md:
std::ptr::NonNull
is stable since 1.25, whilestd::ptr::Unique
is still feature-gated and even hidden from documentation. This should be updated to avoid unnecessarily using unstable features.The text was updated successfully, but these errors were encountered: