├── API.md ├── LICENSE ├── README.md ├── include └── veque.hpp ├── performance └── main.cpp └── test ├── catch.hpp ├── main.cpp ├── test_deque_parity.cpp ├── test_end_growth.cpp ├── test_hashing.cpp ├── test_insert_erase.cpp ├── test_insertion_growth.cpp ├── test_ordering.cpp ├── test_reassignment.cpp ├── test_resize.cpp ├── test_strong_exception_guarantee.cpp ├── test_types.h └── test_vector_parity.cpp /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/README.md -------------------------------------------------------------------------------- /include/veque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/include/veque.hpp -------------------------------------------------------------------------------- /performance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/performance/main.cpp -------------------------------------------------------------------------------- /test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/catch.hpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_deque_parity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_deque_parity.cpp -------------------------------------------------------------------------------- /test/test_end_growth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_end_growth.cpp -------------------------------------------------------------------------------- /test/test_hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_hashing.cpp -------------------------------------------------------------------------------- /test/test_insert_erase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_insert_erase.cpp -------------------------------------------------------------------------------- /test/test_insertion_growth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_insertion_growth.cpp -------------------------------------------------------------------------------- /test/test_ordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_ordering.cpp -------------------------------------------------------------------------------- /test/test_reassignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_reassignment.cpp -------------------------------------------------------------------------------- /test/test_resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_resize.cpp -------------------------------------------------------------------------------- /test/test_strong_exception_guarantee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_strong_exception_guarantee.cpp -------------------------------------------------------------------------------- /test/test_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_types.h -------------------------------------------------------------------------------- /test/test_vector_parity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopty/veque/HEAD/test/test_vector_parity.cpp --------------------------------------------------------------------------------