export_bits metodu
Açıklaması şöyle. Sayının mutlak değerini yazar.
Şöyle yaparız.
Açıklaması şöyle. Sayının mutlak değerini yazar.
Şöyle yaparız.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.
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