pop() public static méthode

public static pop ( PythonDictionary self, object key ) : object
self PythonDictionary
key object
Résultat object
Exemple #1
0
 public object pop(object key, object defaultValue)
 {
     return(DictionaryOps.pop(this, key, defaultValue));
 }
Exemple #2
0
 public object pop(object key)
 {
     return(DictionaryOps.pop(this, key));
 }