MPL11
 All Classes Namespaces Files Typedefs Macros Groups Pages
integral_domain.hpp
Go to the documentation of this file.
1 
12 #ifndef BOOST_MPL11_FWD_INTEGRAL_DOMAIN_HPP
13 #define BOOST_MPL11_FWD_INTEGRAL_DOMAIN_HPP
14 
15 #include <boost/mpl11/fwd/bool.hpp>
16 
17 
18 namespace boost { namespace mpl11 {
34  template <typename Left, typename Right = Left, typename = true_>
35  struct IntegralDomain;
36 
38  template <typename x, typename y>
39  struct div;
40 
42  template <typename x, typename y>
43  struct mod;
45 }} // end namespace boost::mpl11
46 
47 #endif // !BOOST_MPL11_FWD_INTEGRAL_DOMAIN_HPP
Remainder of the integer division of x by y.
Definition: integral_domain.hpp:43
Forwards to boost/mpl11/fwd/integer.hpp.
Integer division of x by y.
Definition: integral_domain.hpp:39