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

Method ToHexString

cpp/src/arrow/buffer.cc:89–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 4

TESTFunction · 0.80
AssertBufferEqualFunction · 0.80
PrintDatumFunction · 0.80

Calls 3

HexEncodeFunction · 0.85
dataFunction · 0.70
sizeFunction · 0.70

Tested by 2

TESTFunction · 0.64
AssertBufferEqualFunction · 0.64