Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Protected Types | Protected Attributes | Friends | List of all members
base_uint< BITS > Class Template Reference

Base class without constructors for uint256 and uint160. More...

#include <uint256.h>

Inheritance diagram for base_uint< BITS >:
Inheritance graph
[legend]

Public Member Functions

bool operator! () const
 
const base_uint operator~ () const
 
const base_uint operator- () const
 
double getdouble () const
 
base_uintoperator= (uint64 b)
 
base_uintoperator^= (const base_uint &b)
 
base_uintoperator&= (const base_uint &b)
 
base_uintoperator|= (const base_uint &b)
 
base_uintoperator^= (uint64 b)
 
base_uintoperator|= (uint64 b)
 
base_uintoperator<<= (unsigned int shift)
 
base_uintoperator>>= (unsigned int shift)
 
base_uintoperator+= (const base_uint &b)
 
base_uintoperator-= (const base_uint &b)
 
base_uintoperator+= (uint64 b64)
 
base_uintoperator-= (uint64 b64)
 
base_uintoperator++ ()
 
const base_uint operator++ (int)
 
base_uintoperator-- ()
 
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)
 

Detailed Description

template<unsigned int BITS>
class base_uint< BITS >

Base class without constructors for uint256 and uint160.

This makes the compiler let you use it in a union.

Definition at line 27 of file uint256.h.

Member Enumeration Documentation

template<unsigned int BITS>
anonymous enum
protected
Enumerator
WIDTH 

Definition at line 30 of file uint256.h.

Member Function Documentation

template<unsigned int BITS>
unsigned char* base_uint< BITS >::begin ( )
inline

Definition at line 348 of file uint256.h.

template<unsigned int BITS>
const unsigned char* base_uint< BITS >::begin ( ) const
inline

Definition at line 358 of file uint256.h.

template<unsigned int BITS>
unsigned char* base_uint< BITS >::end ( )
inline

Definition at line 353 of file uint256.h.

template<unsigned int BITS>
const unsigned char* base_uint< BITS >::end ( ) const
inline

Definition at line 363 of file uint256.h.

template<unsigned int BITS>
uint64 base_uint< BITS >::Get64 ( int  n = 0) const
inline

Definition at line 373 of file uint256.h.

template<unsigned int BITS>
double base_uint< BITS >::getdouble ( ) const
inline

Definition at line 59 of file uint256.h.

template<unsigned int BITS>
std::string base_uint< BITS >::GetHex ( ) const
inline

Definition at line 298 of file uint256.h.

template<unsigned int BITS>
unsigned int base_uint< BITS >::GetSerializeSize ( int  nType,
int  nVersion 
) const
inline

Definition at line 379 of file uint256.h.

template<unsigned int BITS>
bool base_uint< BITS >::operator! ( ) const
inline

Definition at line 34 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator&= ( const base_uint< BITS > &  b)
inline

Definition at line 86 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator++ ( )
inline

Definition at line 183 of file uint256.h.

template<unsigned int BITS>
const base_uint base_uint< BITS >::operator++ ( int  )
inline

Definition at line 192 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator+= ( const base_uint< BITS > &  b)
inline

Definition at line 148 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator+= ( uint64  b64)
inline

Definition at line 166 of file uint256.h.

template<unsigned int BITS>
const base_uint base_uint< BITS >::operator- ( ) const
inline

Definition at line 50 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator-- ( )
inline

Definition at line 200 of file uint256.h.

template<unsigned int BITS>
const base_uint base_uint< BITS >::operator-- ( int  )
inline

Definition at line 209 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator-= ( const base_uint< BITS > &  b)
inline

Definition at line 160 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator-= ( uint64  b64)
inline

Definition at line 174 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator<<= ( unsigned int  shift)
inline

Definition at line 114 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator= ( uint64  b)
inline

Definition at line 70 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator>>= ( unsigned int  shift)
inline

Definition at line 131 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator^= ( const base_uint< BITS > &  b)
inline

Definition at line 79 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator^= ( uint64  b)
inline

Definition at line 100 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator|= ( const base_uint< BITS > &  b)
inline

Definition at line 93 of file uint256.h.

template<unsigned int BITS>
base_uint& base_uint< BITS >::operator|= ( uint64  b)
inline

Definition at line 107 of file uint256.h.

template<unsigned int BITS>
const base_uint base_uint< BITS >::operator~ ( ) const
inline

Definition at line 42 of file uint256.h.

template<unsigned int BITS>
template<typename Stream >
void base_uint< BITS >::Serialize ( Stream &  s,
int  nType,
int  nVersion 
) const
inline

Definition at line 386 of file uint256.h.

template<unsigned int BITS>
void base_uint< BITS >::SetHex ( const char *  psz)
inline

Definition at line 306 of file uint256.h.

template<unsigned int BITS>
void base_uint< BITS >::SetHex ( const std::string &  str)
inline

Definition at line 338 of file uint256.h.

template<unsigned int BITS>
unsigned int base_uint< BITS >::size ( ) const
inline

Definition at line 368 of file uint256.h.

template<unsigned int BITS>
std::string base_uint< BITS >::ToString ( ) const
inline

Definition at line 343 of file uint256.h.

template<unsigned int BITS>
template<typename Stream >
void base_uint< BITS >::Unserialize ( Stream &  s,
int  nType,
int  nVersion 
)
inline

Definition at line 393 of file uint256.h.

Friends And Related Function Documentation

template<unsigned int BITS>
bool operator!= ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 286 of file uint256.h.

template<unsigned int BITS>
bool operator!= ( const base_uint< BITS > &  a,
uint64  b 
)
friend

Definition at line 291 of file uint256.h.

template<unsigned int BITS>
bool operator< ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 218 of file uint256.h.

template<unsigned int BITS>
bool operator<= ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 230 of file uint256.h.

template<unsigned int BITS>
bool operator== ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 266 of file uint256.h.

template<unsigned int BITS>
bool operator== ( const base_uint< BITS > &  a,
uint64  b 
)
friend

Definition at line 274 of file uint256.h.

template<unsigned int BITS>
bool operator> ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 242 of file uint256.h.

template<unsigned int BITS>
bool operator>= ( const base_uint< BITS > &  a,
const base_uint< BITS > &  b 
)
friend

Definition at line 254 of file uint256.h.

template<unsigned int BITS>
int Testuint256AdHoc ( std::vector< std::string >  vArg)
friend
template<unsigned int BITS>
friend class uint160
friend

Definition at line 399 of file uint256.h.

template<unsigned int BITS>
friend class uint256
friend

Definition at line 400 of file uint256.h.

Member Data Documentation

template<unsigned int BITS>
uint32_t base_uint< BITS >::pn[WIDTH]
protected

Definition at line 31 of file uint256.h.


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