Esempio n. 1
0
 def JSONLength(self, *indices_or_keys):
     return UInt64(func('JSONLength', self._value, *indices_or_keys))
Esempio n. 2
0
 def JSONExtractUInt(self, *indices_or_keys):
     return UInt64(func('JSONExtractUInt', self._value, *indices_or_keys))
Esempio n. 3
0
 def visitParamExtractUInt(self, name):
     return UInt64(func('visitParamExtractUInt', self._value, name))
Esempio n. 4
0
 def len(self):
     return UInt64(func('length', self._value))
Esempio n. 5
0
 def URLHash(self, N=None):
     if N:
         return UInt64(func('cutURLParameter', self._value, N))
     else:
         return UInt64(func('cutURLParameter', self._value))
Esempio n. 6
0
 def MACStringToOUI(mac):
     return UInt64(func('MACStringToOUI', mac))
Esempio n. 7
0
 def MACStringToNum(mac):
     return UInt64(func('MACStringToNum', mac))