├── .clang-format ├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── include └── npy.hpp ├── meson.build └── tests ├── .clang-tidy ├── .gitignore ├── createnpy.py ├── meson.build ├── subprojects ├── .gitignore ├── .gitkeep └── catch2.wrap ├── test-read.cpp └── test-write.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | ColumnLimit: 120 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/README.md -------------------------------------------------------------------------------- /include/npy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/include/npy.hpp -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/meson.build -------------------------------------------------------------------------------- /tests/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/.clang-tidy -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | *.npy 3 | -------------------------------------------------------------------------------- /tests/createnpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/createnpy.py -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | Catch2-* 2 | packagecache 3 | -------------------------------------------------------------------------------- /tests/subprojects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/subprojects/catch2.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/subprojects/catch2.wrap -------------------------------------------------------------------------------- /tests/test-read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/test-read.cpp -------------------------------------------------------------------------------- /tests/test-write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llohse/libnpy/HEAD/tests/test-write.cpp --------------------------------------------------------------------------------