binaryninja.numbers.Real

class Real

To Complex, Real adds the operations that work on real numbers.

In short, those are: a conversion to float, trunc(), divmod, %, <, <=, >, and >=.

Real also provides defaults for the derived operations.

__init__()

x.__init__(…) initializes x; see help(type(x)) for signature

Methods

conjugate() Conjugate is a no-op for Reals.

Attributes

imag Real numbers have no imaginary component.
real Real numbers are their real component.