18 Kasım 2016 Cuma

multiprecision export_bits metodu

export_bits metodu
Açıklaması şöyle. Sayının mutlak değerini yazar.
Exports the absolute value of val to OutputIterator out. The function will write chunk_size bits at a time to the OutputIterator, and if msv_first is true, will write the most-significant block first. Byte and bit order within each chunk_size block is always in the machines native format. Further, each block is stored in a boost::uintmax_t when it's assigned to *out.
Şöyle yaparız.
typedef multiprecision::int512_t balance_value;
vector<uint8_t> byteSet;
export_bits(balance, back_inserter(byteSet), 8);
import_bits metodu
Şöyle yaparız.
balance_value balance;
import_bits(balance, byteSet.begin(), byteSet.end());


Hiç yorum yok:

Yorum Gönder