├── .clang-format ├── .gitignore ├── include ├── pystd0.hpp ├── pystd2025.hpp └── pystd2025_btree.hpp ├── main.cpp ├── meson.build ├── others ├── build.sh ├── pycounter.py └── stdlibcounter.cpp ├── readme.md ├── src ├── meson.build ├── pystd2025.cpp ├── pystd2025_filesystem.cpp ├── pystd2025_regex.cpp ├── pystd2025_tables.cpp └── pystd2025_tables.hpp ├── test ├── meson.build ├── pystd2025test.cpp ├── pystd_testconfig.hpp.in └── testfile.txt └── tools ├── argparse.cpp ├── genlower.py ├── genupper.py ├── globber.cpp └── meson.build /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *user 2 | *~ 3 | *.bak 4 | others/stdlibcounter 5 | __pycache__ 6 | 7 | -------------------------------------------------------------------------------- /include/pystd0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/include/pystd0.hpp -------------------------------------------------------------------------------- /include/pystd2025.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/include/pystd2025.hpp -------------------------------------------------------------------------------- /include/pystd2025_btree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/include/pystd2025_btree.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/main.cpp -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/meson.build -------------------------------------------------------------------------------- /others/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/others/build.sh -------------------------------------------------------------------------------- /others/pycounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/others/pycounter.py -------------------------------------------------------------------------------- /others/stdlibcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/others/stdlibcounter.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/readme.md -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/pystd2025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/pystd2025.cpp -------------------------------------------------------------------------------- /src/pystd2025_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/pystd2025_filesystem.cpp -------------------------------------------------------------------------------- /src/pystd2025_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/pystd2025_regex.cpp -------------------------------------------------------------------------------- /src/pystd2025_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/pystd2025_tables.cpp -------------------------------------------------------------------------------- /src/pystd2025_tables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/src/pystd2025_tables.hpp -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/pystd2025test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/test/pystd2025test.cpp -------------------------------------------------------------------------------- /test/pystd_testconfig.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/test/pystd_testconfig.hpp.in -------------------------------------------------------------------------------- /test/testfile.txt: -------------------------------------------------------------------------------- 1 | This is a test file. 2 | -------------------------------------------------------------------------------- /tools/argparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/tools/argparse.cpp -------------------------------------------------------------------------------- /tools/genlower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/tools/genlower.py -------------------------------------------------------------------------------- /tools/genupper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/tools/genupper.py -------------------------------------------------------------------------------- /tools/globber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/tools/globber.cpp -------------------------------------------------------------------------------- /tools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpakkane/pystd/HEAD/tools/meson.build --------------------------------------------------------------------------------