.. Metafunctions/Bitwise Operations//bitor_ bitor\_ ======= Synopsis -------- .. parsed-literal:: template< typename T1 , typename T2 , typename T3 = |unspecified| |...| , typename T\ *n* = |unspecified| > struct bitor\_ { typedef |unspecified| type; }; Description ----------- Returns the result of *bitwise or* (``|``) operation of its arguments. Header ------ .. parsed-literal:: #include #include Model of -------- |Numeric Metafunction| Parameters ---------- +---------------+---------------------------+-----------------------------------------------+ | Parameter | Requirement | Description | +===============+===========================+===============================================+ | |T1...Tn| | |Integral Constant| | Operation's arguments. | +---------------+---------------------------+-----------------------------------------------+ |Note:| |numeric metafunction note| |-- end note| Expression semantics -------------------- For any |Integral Constant|\ s |c1...cn|: .. parsed-literal:: typedef bitor_::type r; :Return type: |Integral Constant|. :Semantics: Equivalent to .. parsed-literal:: typedef integral_c< typeof(c1::value | c2::value) , ( c1::value | c2::value ) > c; typedef bitor_::type r; .. .......................................................................... .. parsed-literal:: typedef bitor_ r; :Return type: |Integral Constant|. :Semantics: Equivalent to .. parsed-literal:: struct r : bitor_::type {}; Complexity ---------- Amortized constant time. Example ------- .. parsed-literal:: typedef integral_c u0; typedef integral_c u1; typedef integral_c u2; typedef integral_c u8; typedef integral_c uffffffff; BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 0 ); BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 1 ); BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 1 ); BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 0xffffffff ); BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 0xffffffff ); BOOST_MPL_ASSERT_RELATION( (bitor_::value), ==, 0xffffffff ); See also -------- |Bitwise Operations|, |Numeric Metafunction|, |numeric_cast|, |bitand_|, |bitxor_|, |shift_left|