update() public static method

public static update ( CodeContext context, PythonDictionary self, object b ) : void
context CodeContext
self PythonDictionary
b object
return void
Exemplo n.º 1
0
 public void update(CodeContext /*!*/ context, object b, [ParamDictionary] IDictionary <object, object> f)
 {
     DictionaryOps.update(context, this, b);
     DictionaryOps.update(context, this, f);
 }
Exemplo n.º 2
0
 public void update(CodeContext /*!*/ context, object b)
 {
     DictionaryOps.update(context, this, b);
 }