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
Not sure if this is possible to satisfy without full const-generics features. I wonder if mem::size_of::<A>() == A::size() * mem::size_of::<A::Item>() could be relaxed to mem::size_of::<A>() >= A::size() * mem::size_of::<A::Item>()
This can be useful for controlling the size of your type when storing some generic type on SmallVec.
As expected, only the first test is passed.
The text was updated successfully, but these errors were encountered: