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

Function str2span

cpp/src/parquet/encryption/encryption.h:99–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97};
98
99inline std::span<const uint8_t> str2span(const std::string& str) {
100 if (str.empty()) {
101 return {};
102 }
103
104 return {reinterpret_cast<const uint8_t*>(str.data()), str.size()};
105}
106
107class PARQUET_EXPORT ColumnEncryptionProperties {
108 public:

Callers 9

VerifySignatureMethod · 0.85
VerifySignatureMethod · 0.85
EncryptKeyLocallyFunction · 0.85
DecryptKeyLocallyFunction · 0.85
EncryptionRoundTripMethod · 0.85
DecryptMethod · 0.85
EncryptMethod · 0.85

Calls 3

emptyMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by 3

EncryptionRoundTripMethod · 0.68