Shmoopty / veque

Fast C++ container combining the best features of std::vector and std::deque
Boost Software License 1.0
119 stars 6 forks source link

performance #7

Closed ilobilo closed 2 years ago

ilobilo commented 2 years ago

How fast is veque compared to std::vector and std::deque?

Shmoopty commented 2 years ago

That can be seen here, including code to run your own performance tests.

ilobilo commented 2 years ago

Thanks