update() public static method

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