├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.MIT ├── Makefile ├── README.md ├── appveyor.yml ├── src └── fifo_map.hpp └── test ├── thirdparty └── doctest │ ├── LICENSE.txt │ └── doctest.h └── unit.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | unit 3 | cm/* 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/fifo_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/src/fifo_map.hpp -------------------------------------------------------------------------------- /test/thirdparty/doctest/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/test/thirdparty/doctest/LICENSE.txt -------------------------------------------------------------------------------- /test/thirdparty/doctest/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/test/thirdparty/doctest/doctest.h -------------------------------------------------------------------------------- /test/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlohmann/fifo_map/HEAD/test/unit.cpp --------------------------------------------------------------------------------