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
* Split version ranges into their own crate
* polish
* Rename to `Ranges`
* Doc
* Use union feature for smallvec
> This feature requires Rust 1.49.
> When the union feature is enabled smallvec will track its state (inline or spilled) without the use of an enum tag, reducing the size of the smallvec by one machine word. This means that there is potentially no space overhead compared to Vec. Note that smallvec can still be larger than Vec if the inline buffer is larger than two machine words.
* Use `SmallVec<[Interval<V>; 1]>` for better performance
* Move comments.
* Add alias to avoid breaking change
0 commit comments