def JSONLength(self, *indices_or_keys): return UInt64(func('JSONLength', self._value, *indices_or_keys))
def JSONExtractUInt(self, *indices_or_keys): return UInt64(func('JSONExtractUInt', self._value, *indices_or_keys))
def visitParamExtractUInt(self, name): return UInt64(func('visitParamExtractUInt', self._value, name))
def len(self): return UInt64(func('length', self._value))
def URLHash(self, N=None): if N: return UInt64(func('cutURLParameter', self._value, N)) else: return UInt64(func('cutURLParameter', self._value))
def MACStringToOUI(mac): return UInt64(func('MACStringToOUI', mac))
def MACStringToNum(mac): return UInt64(func('MACStringToNum', mac))