Exemplo n.º 1
0
 def createValue(self):
     return Bits.createValue(self) - self.bias
Exemplo n.º 2
0
 def createRawDisplay(self):
     return str(Bits.createValue(self))
Exemplo n.º 3
0
 def createValue(self):
     value = Bits.createValue(self)
     return 1 + float(value) / (2**self.size)
Exemplo n.º 4
0
 def createValue(self):
     value = Bits.createValue(self)
     return durationWin64(value)
Exemplo n.º 5
0
 def createValue(self):
     value = Bits.createValue(self)
     return handler(value)
Exemplo n.º 6
0
 def __bool__(self):
     return Bits.createValue(self) != 0
Exemplo n.º 7
0
 def createRawDisplay(self):
     value = Bits.createValue(self)
     return str(value)