├── .gitignore ├── src └── type │ └── type.h └── test ├── lest.hpp ├── test.bat ├── test.cpp └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/.gitignore -------------------------------------------------------------------------------- /src/type/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/src/type/type.h -------------------------------------------------------------------------------- /test/lest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/test/lest.hpp -------------------------------------------------------------------------------- /test/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/test/test.bat -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITHare/util/HEAD/test/test.sh --------------------------------------------------------------------------------