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

Method ToAwsString

cpp/src/arrow/filesystem/s3fs.cc:503–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501 }
502
503 Aws::String ToAwsString() const {
504 Aws::String res(bucket.begin(), bucket.end());
505 res.reserve(bucket.size() + key.size() + 1);
506 res += kSep;
507 res.append(key.begin(), key.end());
508 return res;
509 }
510
511 Aws::String ToURLEncodedAwsString() const {
512 // URL-encode individual parts, not the '/' separator

Callers 1

CopyObjectMethod · 0.80

Calls 5

beginMethod · 0.45
endMethod · 0.45
reserveMethod · 0.45
sizeMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected