├── .clang-format ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── include ├── array2d.h ├── fixed_map.h ├── fixed_string.h ├── inlined_vector.h ├── object_pool.h └── ring_buffer.h └── tests ├── array2d.cpp ├── catch.hpp ├── container_matcher.h ├── fixed_map.cpp ├── fixed_string.cpp ├── inlined_vector.cpp ├── object_pool.cpp ├── ring_buffer.cpp └── tests.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/README.md -------------------------------------------------------------------------------- /include/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/array2d.h -------------------------------------------------------------------------------- /include/fixed_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/fixed_map.h -------------------------------------------------------------------------------- /include/fixed_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/fixed_string.h -------------------------------------------------------------------------------- /include/inlined_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/inlined_vector.h -------------------------------------------------------------------------------- /include/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/object_pool.h -------------------------------------------------------------------------------- /include/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/include/ring_buffer.h -------------------------------------------------------------------------------- /tests/array2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/array2d.cpp -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/container_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/container_matcher.h -------------------------------------------------------------------------------- /tests/fixed_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/fixed_map.cpp -------------------------------------------------------------------------------- /tests/fixed_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/fixed_string.cpp -------------------------------------------------------------------------------- /tests/inlined_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/inlined_vector.cpp -------------------------------------------------------------------------------- /tests/object_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/object_pool.cpp -------------------------------------------------------------------------------- /tests/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/ring_buffer.cpp -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenbom/utils/HEAD/tests/tests.cpp --------------------------------------------------------------------------------