Audacity 3.2.0
Public Member Functions | Public Attributes | List of all members
fast_float::adjusted_mantissa Struct Reference

#include <fast_float.h>

Public Member Functions

 adjusted_mantissa ()=default
 
bool operator== (const adjusted_mantissa &o) const
 
bool operator!= (const adjusted_mantissa &o) const
 

Public Attributes

uint64_t mantissa {0}
 
int32_t power2 {0}
 

Detailed Description

Definition at line 301 of file fast_float.h.

Constructor & Destructor Documentation

◆ adjusted_mantissa()

fast_float::adjusted_mantissa::adjusted_mantissa ( )
default

Member Function Documentation

◆ operator!=()

bool fast_float::adjusted_mantissa::operator!= ( const adjusted_mantissa o) const
inline

Definition at line 308 of file fast_float.h.

308 {
309 return mantissa != o.mantissa || power2 != o.power2;
310 }

References mantissa, and power2.

◆ operator==()

bool fast_float::adjusted_mantissa::operator== ( const adjusted_mantissa o) const
inline

Definition at line 305 of file fast_float.h.

305 {
306 return mantissa == o.mantissa && power2 == o.power2;
307 }

References mantissa, and power2.

Member Data Documentation

◆ mantissa

uint64_t fast_float::adjusted_mantissa::mantissa {0}

◆ power2

int32_t fast_float::adjusted_mantissa::power2 {0}

The documentation for this struct was generated from the following file: