summary refs log tree commit diff
path: root/src/librustc_data_structures/accumulate_vec.rs
AgeCommit message (Collapse)AuthorLines
2017-01-29Remove dead recursive partial eq implest31-1/+1
Its nowhere used (if it had been used used, the rust stack would have overflown due to the recursion). Its presence was confusing for mrustc.
2017-01-03Add drain method to AccumulateVec/ArrayVecAndrew Cann-0/+39
You can now call .drain(..) on SmallVec, AccumulateVec and ArrayVec
2016-11-11Change implementation of syntax::util::SmallVector to use ↵Mark-Simulacrum-6/+152
data_structures::SmallVec.
2016-10-25Add AccumulateVec, a potentially stack-allocated vector.Mark-Simulacrum-0/+52
AccumulateVec is generic over the Array trait, which is currently only implemented for [T; 8].