◆ bignum_t() [1/2]
| duckdb::bignum_t::bignum_t |
( |
| ) |
|
|
inline |
◆ bignum_t() [2/2]
46424 : data(data) {
46425 }
◆ Print()
| void duckdb::bignum_t::Print |
( |
| ) |
const |
46658 {
46659 auto ptr = data.GetData();
46660 auto length = data.GetSize();
46661 string result;
46662 for (idx_t i = 0; i < length; ++i) {
46663 for (int j = 7; j >= 0; --j) {
46664 result += to_string((ptr[i] >> j) & 1);
46665 }
46666 result += " ";
46667 }
46669}
static DUCKDB_API void Print(OutputStream stream, const string &str)
Print the object to the stream.
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp