MCPcopy Create free account
hub / github.com/apache/arrow / ToHexString

Method ToHexString

cpp/src/arrow/buffer.cc:90–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90std::string Buffer::ToHexString() {
91 return HexEncode(data(), static_cast<size_t>(size()));
92}
93
94bool Buffer::Equals(const Buffer& other, const int64_t nbytes) const {
95 return this == &other || (size_ >= nbytes && other.size_ >= nbytes &&

Callers 3

TESTFunction · 0.80
PrintDatumFunction · 0.80

Calls 3

HexEncodeFunction · 0.85
dataFunction · 0.70
sizeFunction · 0.70

Tested by 1

TESTFunction · 0.64