├── .appveyor.yml ├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── cmake └── dummy-config.cmake.in ├── doc └── reference.md ├── include └── tao │ └── operators.hpp └── src └── test └── operators ├── CMakeLists.txt ├── no_rvalue_reference_results.cpp └── test_operators.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/README.md -------------------------------------------------------------------------------- /cmake/dummy-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/cmake/dummy-config.cmake.in -------------------------------------------------------------------------------- /doc/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/doc/reference.md -------------------------------------------------------------------------------- /include/tao/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/include/tao/operators.hpp -------------------------------------------------------------------------------- /src/test/operators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/src/test/operators/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/operators/no_rvalue_reference_results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/src/test/operators/no_rvalue_reference_results.cpp -------------------------------------------------------------------------------- /src/test/operators/test_operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocpp/operators/HEAD/src/test/operators/test_operators.cpp --------------------------------------------------------------------------------