MCPcopy Create free account
hub / github.com/apache/qpid-proton / float32

Class float32

python/proton/_data.py:206–214  ·  view source on GitHub ↗

The float AMQP type. A 32 bit floating point number (IEEE 754-2008 binary32).

Source from the content-addressed store, hash-verified

204
205
206class float32(float):
207 """
208 The float AMQP type.
209
210 A 32 bit floating point number (IEEE 754-2008 binary32).
211 """
212
213 def __repr__(self) -> str:
214 return "float32(%s)" % float.__repr__(self)
215
216
217class decimal32(int):

Callers 8

get_floatMethod · 0.85
types_test.goFile · 0.85
unmarshalFunction · 0.85
getInterfaceFunction · 0.85
marshal.goFile · 0.85
TestPrimitivesExactFunction · 0.85
TestPrimitivesInterfaceFunction · 0.85

Calls

no outgoing calls

Tested by 2

TestPrimitivesExactFunction · 0.68
TestPrimitivesInterfaceFunction · 0.68