#include <varint.hpp>
|
bool | operator== (const unsigned_int &i, const uint32_t &v) |
|
bool | operator== (const uint32_t &i, const unsigned_int &v) |
|
bool | operator== (const unsigned_int &i, const unsigned_int &v) |
|
bool | operator!= (const unsigned_int &i, const uint32_t &v) |
|
bool | operator!= (const uint32_t &i, const unsigned_int &v) |
|
bool | operator!= (const unsigned_int &i, const unsigned_int &v) |
|
bool | operator< (const unsigned_int &i, const uint32_t &v) |
|
bool | operator< (const uint32_t &i, const unsigned_int &v) |
|
bool | operator< (const unsigned_int &i, const unsigned_int &v) |
|
bool | operator>= (const unsigned_int &i, const uint32_t &v) |
|
bool | operator>= (const uint32_t &i, const unsigned_int &v) |
|
bool | operator>= (const unsigned_int &i, const unsigned_int &v) |
|
Definition at line 6 of file varint.hpp.
◆ unsigned_int() [1/2]
fc::unsigned_int::unsigned_int |
( |
uint32_t | v = 0 | ) |
|
|
inline |
◆ unsigned_int() [2/2]
fc::unsigned_int::unsigned_int |
( |
T | v | ) |
|
|
inline |
◆ operator uint32_t()
fc::unsigned_int::operator uint32_t |
( |
| ) |
const |
|
inline |
◆ operator=()
◆ operator!= [1/3]
Definition at line 24 of file varint.hpp.
24{ return i != v.value; }
◆ operator!= [2/3]
Definition at line 23 of file varint.hpp.
23{ return i.value != v; }
◆ operator!= [3/3]
Definition at line 25 of file varint.hpp.
25{ return i.value != v.value; }
◆ operator< [1/3]
Definition at line 28 of file varint.hpp.
28{ return i < v.value; }
◆ operator< [2/3]
Definition at line 27 of file varint.hpp.
27{ return i.value < v; }
◆ operator< [3/3]
Definition at line 29 of file varint.hpp.
29{ return i.value < v.value; }
◆ operator== [1/3]
Definition at line 20 of file varint.hpp.
20{ return i == v.value; }
◆ operator== [2/3]
Definition at line 19 of file varint.hpp.
19{ return i.value == v; }
◆ operator== [3/3]
Definition at line 21 of file varint.hpp.
21{ return i.value == v.value; }
◆ operator>= [1/3]
Definition at line 32 of file varint.hpp.
32{ return i >= v.value; }
◆ operator>= [2/3]
Definition at line 31 of file varint.hpp.
31{ return i.value >= v; }
◆ operator>= [3/3]
Definition at line 33 of file varint.hpp.
33{ return i.value >= v.value; }
◆ value
The documentation for this struct was generated from the following file: