#include <boost/variant.hpp>
#include <ka/utility.hpp>
Go to the source code of this file.
|
| | qi |
| | Deprecated in 2.5. Use int8_t from <cstdint>.
|
| |
|
| template<typename A , typename B > |
| using | qi::Either = boost::variant< A, B > |
| | Convenient alias to a variant of two types. More...
|
| |
| template<typename T > |
| using | qi::VisitorBase = boost::static_visitor< T > |
| |
|
| template<typename Proc , typename T > |
| auto | qi::visit (Proc &&proc, T &&variant) -> decltype(boost::apply_visitor(ka::fwd< Proc >(proc), ka::fwd< T >(variant))) |
| |