Package pyplusplus :: Package decl_wrappers :: Module calldef_wrapper :: Class operators_helper

ClassType operators_helper

source code

helps Py++ to deal with C++ operators

Static Methods
 
is_supported(oper)
returns True if Boost.Python support the operator
source code
 
exportable(oper)
returns True if Boost.Python or Py++ know how to export the operator
source code
Class Variables
  inplace = ['+=', '-=', '*=', '/=', '%=', '>>=', '<<=', '&=', '...
  comparison = ['==', '!=', '<', '>', '<=', '>=']
  non_member = ['+', '-', '*', '/', '%', '&', '^', '|']
  unary = ['!', '~', '+', '-']
  all = ['+=', '-=', '*=', '/=', '%=', '>>=', '<<=', '&=', '^=',...
Class Variable Details

inplace

Value:
['+=', '-=', '*=', '/=', '%=', '>>=', '<<=', '&=', '^=', '|=']

all

Value:
['+=',
 '-=',
 '*=',
 '/=',
 '%=',
 '>>=',
 '<<=',
 '&=',
...