![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Base class without constructors for uint256 and uint160. More...
#include <uint256.h>
Public Member Functions | |
bool | operator! () const |
const base_uint | operator~ () const |
const base_uint | operator- () const |
double | getdouble () const |
base_uint & | operator= (uint64 b) |
base_uint & | operator^= (const base_uint &b) |
base_uint & | operator&= (const base_uint &b) |
base_uint & | operator|= (const base_uint &b) |
base_uint & | operator^= (uint64 b) |
base_uint & | operator|= (uint64 b) |
base_uint & | operator<<= (unsigned int shift) |
base_uint & | operator>>= (unsigned int shift) |
base_uint & | operator+= (const base_uint &b) |
base_uint & | operator-= (const base_uint &b) |
base_uint & | operator+= (uint64 b64) |
base_uint & | operator-= (uint64 b64) |
base_uint & | operator++ () |
const base_uint | operator++ (int) |
base_uint & | operator-- () |
const base_uint | operator-- (int) |
std::string | GetHex () const |
void | SetHex (const char *psz) |
void | SetHex (const std::string &str) |
std::string | ToString () const |
unsigned char * | begin () |
unsigned char * | end () |
const unsigned char * | begin () const |
const unsigned char * | end () const |
unsigned int | size () const |
uint64 | Get64 (int n=0) const |
unsigned int | GetSerializeSize (int nType, int nVersion) const |
template<typename Stream > | |
void | Serialize (Stream &s, int nType, int nVersion) const |
template<typename Stream > | |
void | Unserialize (Stream &s, int nType, int nVersion) |
Protected Types | |
enum | { WIDTH =BITS/32 } |
Protected Attributes | |
uint32_t | pn [WIDTH] |
Friends | |
class | uint160 |
class | uint256 |
bool | operator< (const base_uint &a, const base_uint &b) |
bool | operator<= (const base_uint &a, const base_uint &b) |
bool | operator> (const base_uint &a, const base_uint &b) |
bool | operator>= (const base_uint &a, const base_uint &b) |
bool | operator== (const base_uint &a, const base_uint &b) |
bool | operator== (const base_uint &a, uint64 b) |
bool | operator!= (const base_uint &a, const base_uint &b) |
bool | operator!= (const base_uint &a, uint64 b) |
int | Testuint256AdHoc (std::vector< std::string > vArg) |
Base class without constructors for uint256 and uint160.
This makes the compiler let you use it in a union.
|
protected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
friend |