The QLEInteger class provides platform-independent little-endian integers. More...
| Header: | #include <QLEInteger> |
| CMake: | find_package(Qt6 REQUIRED COMPONENTS Core)target_link_libraries(mytarget PRIVATE Qt6::Core) |
| qmake: | QT += core |
| QLEInteger(T value) | |
| T | operator T() const |
| bool | operator!=(QLEInteger<T> other) const |
| QLEInteger<T> & | operator%=(T i) |
| QLEInteger<T> & | operator&=(T i) |
| QLEInteger<T> & | operator*=(T i) |
| QLEInteger<T> & | operator++() |
| QLEInteger<T> | operator++(int) |
| QLEInteger<T> & | operator+=(T i) |
| QLEInteger<T> & | operator--() |
| QLEInteger<T> | operator--(int) |
| QLEInteger<T> & | operator-=(T i) |
| QLEInteger<T> & | operator/=(T i) |
| QLEInteger<T> & | operator<<=(T i) |
| QLEInteger<T> & | operator=(T i) |
| bool | operator==(QLEInteger<T> other) const |
| QLEInteger<T> & | operator>>=(T i) |
| QLEInteger<T> & | operator^=(T i) |
| QLEInteger<T> & | operator|=(T i) |
The template parameter T must be a C++ integer type:
Note: Using this class may be slower than using native integers, so only use it when an exact endianness is needed.
[explicit constexpr] QLEInteger::QLEInteger(T value)Constructs a QLEInteger with the given value.
[static constexpr] QLEInteger<T>
QLEInteger::max()Returns the maximum (finite) value representable by the numeric type T.
[static constexpr] QLEInteger<T>
QLEInteger::min()Returns the minimum (finite) value representable by the numeric type T.
Returns the value of this QLEInteger as a native integer.
Returns true if the value of this QLEInteger is not equal to the value of other.
Sets this QLEInteger to the remainder of a division by i and returns a reference to this object.
Performs a bitwise AND with i onto this QLEInteger and returns a reference to this object.
Multiplies i with this QLEInteger and returns a reference to this object.
Performs a prefix ++ (increment) on this QLEInteger and returns a reference to this object.
Performs a postfix ++ (increment) on this QLEInteger and returns a reference to this object.
Adds i to this QLEInteger and returns a reference to this object.
Performs a prefix -- (decrement) on this QLEInteger and returns a reference to this object.
Performs a postfix -- (decrement) on this QLEInteger and returns a reference to this object.
Subtracts i from this QLEInteger and returns a reference to this object.
Divides this QLEInteger with i and returns a reference to this object.
Performs a right-shift by i on this QLEInteger and returns a reference to this object.
Assigns i to this QLEInteger and returns a reference to this QLEInteger.
Returns true if the value of this QLEInteger is equal to the value of other.
Performs a left-shift by i on this QLEInteger and returns a reference to this object.
Performs a bitwise XOR with i onto this QLEInteger and returns a reference to this object.
Performs a bitwise OR with i onto this QLEInteger and returns a reference to this object.