| 1 | = Operator Names = |
| 2 | |
| 3 | |
| 4 | ||=` ` =||= type_traits =||= MUP =||= std =||= proto =||= boost::operator =|| |
| 5 | ||=`==` =||equal_to ||equal_to || `=` || `=` ||equality_comparable || |
| 6 | ||=`!=` =||not_equal_to ||not_equal_to || `=` || `=` || || |
| 7 | ||=`<` =||less ||less || `=` || `=` ||less_than_comparable || |
| 8 | ||=`<=` =||less_equal ||less_equal || `=` || `=` || || |
| 9 | ||=`>` =||greater ||greater || `=` || `=` || || |
| 10 | ||=`>=` =||greater_equal ||greater_equal || `=` || `=` || || |
| 11 | ||=`+` =||plus ||plus || `=` || `=` ||addable || |
| 12 | ||=`-` =||minus ||minus || `=` || `=` ||subtractable || |
| 13 | ||=`*` =||multiplies ||multiplies || `=` || `=` ||multipliable || |
| 14 | ||=`/` =||divides ||divides || `=` || `=` ||dividable || |
| 15 | ||=`%` =||modulus ||modulus || `=` || `=` ||modable || |
| 16 | ||=`+=` =||plus_equal ||plus_assign || || *_assign || || |
| 17 | ||=`-=` =||minus_equal ||minus_assign || || *_assign || || |
| 18 | ||=`*=` =||multiplies_equal ||multiplies_assign || || *_assign || || |
| 19 | ||=`/=` =||divides_equal ||divides_assign || || *_assign || || |
| 20 | ||=`%=` =||modulus_equal ||modulus_assign || || *_assign || || |
| 21 | ||=`&&` =||logical_and ||logical_and || `?=` || `=` || || |
| 22 | ||=`||` =||logical_or ||logical_or || `?=` || `=` || || |
| 23 | ||=`&` =||bit_and ||bitwise_and || `?=` || bitwise_* ||andable || |
| 24 | ||=`|` =||bit_or ||bitwise_or || `?=` || bitwise_* ||orable || |
| 25 | ||=`^` =||bit_xor ||bitwise_xor || `?=` || bitwise_* ||xorable || |
| 26 | ||=`<<` =||left_shift ||left_shift || ||shift_left ||left_shiftable || |
| 27 | ||=`>>` =||right_shift ||right_shift || ||shift_right ||right_shiftable || |
| 28 | ||=`&=` =||bit_and_equal ||bitwise_and_assign || `?` ||bitwise_and_assign || || |
| 29 | ||=`|=` =||bit_or_equal ||bitwise_or_assign || `?` ||bitwise_or_assign || || |
| 30 | ||=`^=` =||bit_xor_equal ||bitwise_xor_assign || `?` ||bitwise_xor_assign || || |
| 31 | ||=`<<=` =||left_shift_equal ||left_shift_assign || ||shift_left_assign || || |
| 32 | ||=`>>=` =||right_shift_equal ||right_shift_assign || ||shift_right_assign || || |
| 33 | ||=`++` =||prefix_increment ||pre_increment ||advance ||pre_inc ||incrementable || |
| 34 | ||=`--` =||prefix_decrement ||pre_decrement || ||pre_dec ||decrementable || |
| 35 | ||=`+` =||unary_plus ||unary_plus || || `=` || || |
| 36 | ||=`-` =||unary_minus ||negate ||negate ||negate || || |
| 37 | ||=`!` =||logical_not ||logical_not || `?` ||logical_not || || |
| 38 | ||=`~` =||complement ||complement ||compl ||complement || || |
| 39 | ||=`*` =||dereference ||dereference || ||dereference || || |
| 40 | ||=`++` =||postfix_increment ||post_increment || ||post_inc || || |
| 41 | ||=`--` =||postfix_decrement ||post_decrement || ||post_dec || || |
| 42 | |
| 43 | |