├── .gitignore ├── LICENSE_1_0.txt ├── README.md ├── include └── simple_match │ ├── boost │ ├── any.hpp │ ├── lexical_cast.hpp │ ├── optional.hpp │ └── variant.hpp │ ├── implementation │ └── some_none.hpp │ ├── regex.hpp │ ├── simple_match.hpp │ └── utility.hpp └── test ├── cppcon_feedback.cpp └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/README.md -------------------------------------------------------------------------------- /include/simple_match/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/boost/any.hpp -------------------------------------------------------------------------------- /include/simple_match/boost/lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/boost/lexical_cast.hpp -------------------------------------------------------------------------------- /include/simple_match/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/boost/optional.hpp -------------------------------------------------------------------------------- /include/simple_match/boost/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/boost/variant.hpp -------------------------------------------------------------------------------- /include/simple_match/implementation/some_none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/implementation/some_none.hpp -------------------------------------------------------------------------------- /include/simple_match/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/regex.hpp -------------------------------------------------------------------------------- /include/simple_match/simple_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/simple_match.hpp -------------------------------------------------------------------------------- /include/simple_match/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/include/simple_match/utility.hpp -------------------------------------------------------------------------------- /test/cppcon_feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/test/cppcon_feedback.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbandela/simple_match/HEAD/test/test.cpp --------------------------------------------------------------------------------