├── .gitattributes ├── CMakeLists.txt ├── LICENSE ├── LICENSE_1_0.txt ├── README.md ├── copyright.txt ├── optional.hpp ├── test_optional.cpp └── test_type_traits.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/.gitattributes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/README.md -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/copyright.txt -------------------------------------------------------------------------------- /optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/optional.hpp -------------------------------------------------------------------------------- /test_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/test_optional.cpp -------------------------------------------------------------------------------- /test_type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/Optional/HEAD/test_type_traits.cpp --------------------------------------------------------------------------------