DanielStutzbach / blist

A list-like type with better asymptotic performance and similar performance on small lists
Other
313 stars 35 forks source link

Deque methods for blist #57

Closed larsmans closed 10 years ago

larsmans commented 10 years ago

It would be nice to have methods appendleft, extendleft and rotate to make blist a drop-in replacement for collections.deque as well as list.

DanielStutzbach commented 10 years ago

I think the value of keeping blist's interface identical to list is greater than the value of being able to replace usages of collection.deque.