├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── essentials.hpp └── test ├── CMakeLists.txt ├── allocator.cpp ├── data_structure.cpp ├── directory.cpp ├── json_lines.cpp └── timer.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test/build 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/README.md -------------------------------------------------------------------------------- /include/essentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/include/essentials.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/allocator.cpp -------------------------------------------------------------------------------- /test/data_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/data_structure.cpp -------------------------------------------------------------------------------- /test/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/directory.cpp -------------------------------------------------------------------------------- /test/json_lines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/json_lines.cpp -------------------------------------------------------------------------------- /test/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermp/essentials/HEAD/test/timer.cpp --------------------------------------------------------------------------------