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

Method ToAwsString

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

Source from the content-addressed store, hash-verified

561 }
562
563 Aws::String ToAwsString() const {
564 Aws::String res(bucket.begin(), bucket.end());
565 res.reserve(bucket.size() + key.size() + 1);
566 res += kSep;
567 res.append(key.begin(), key.end());
568 return res;
569 }
570
571 Aws::String ToURLEncodedAwsString() const {
572 // 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