For matching terminals that are convertible to a type. More...
#include <proto_fwd.hpp>
For matching terminals that are convertible to a type.
Use convertible_to<>
to match a terminal that is convertible to some type. For example, the grammar terminal<convertible_to<int> >
will match any terminal whose argument is convertible to an integer.
is_convertible<>
from Boost.Type_traits is used to determinal convertibility.