Disk ARchive 2.7.16
Full featured and portable backup and archiving tool
Public Member Functions | Private Member Functions | Private Attributes | List of all members
libdar::deci Class Reference

decimal class, convert infinint from and to decimal represention More...

#include <deci.hpp>

+ Collaboration diagram for libdar::deci:

Public Member Functions

 deci (std::string s)
 
 deci (const infinint &x)
 constructor to build a "deci" from an infinint
 
 deci (const deci &ref)
 copy constructor More...
 
 deci (deci &&ref) noexcept
 move constructor More...
 
decioperator= (const deci &ref)
 assignment operator More...
 
decioperator= (deci &&ref) noexcept
 assignment move operator More...
 
 ~deci ()
 destructor More...
 
infinint computer () const
 this produce a infinint from the decimal stored in the current object
 
std::string human () const
 this produce a string from the decimal stored in the current object
 

Private Member Functions

void detruit ()
 
void copy_from (const deci &ref)
 
void reduce ()
 

Private Attributes

storagedecimales
 

Detailed Description

decimal class, convert infinint from and to decimal represention

the class contains the decimal representation of an integer and can produce a readable string to display the corresponding integer it can also produce a computer value corresponding to the decimal value. In the other side, objects of this class can be built from a integer as well as from a string representing the decimals of an integer.

Definition at line 50 of file deci.hpp.

Constructor & Destructor Documentation

◆ deci() [1/3]

libdar::deci::deci ( std::string  s)

constructor to build a "deci" object from a string representing decimals

Note
may throw Edeci exception if the given string does not correspond to a positive integer in decimal notation

◆ deci() [2/3]

libdar::deci::deci ( const deci ref)
inline

copy constructor

Definition at line 62 of file deci.hpp.

◆ deci() [3/3]

libdar::deci::deci ( deci &&  ref)
inlinenoexcept

move constructor

Definition at line 65 of file deci.hpp.

◆ ~deci()

libdar::deci::~deci ( )
inline

destructor

Definition at line 74 of file deci.hpp.

Member Function Documentation

◆ operator=() [1/2]

deci & libdar::deci::operator= ( const deci ref)
inline

assignment operator

Definition at line 68 of file deci.hpp.

◆ operator=() [2/2]

deci & libdar::deci::operator= ( deci &&  ref)
inlinenoexcept

assignment move operator

Definition at line 71 of file deci.hpp.

Member Data Documentation

◆ decimales

storage* libdar::deci::decimales
private

Definition at line 84 of file deci.hpp.


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