blob: ce5079f1d453294d90f80e3643ea3f257cb37d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/strcat_win.h"
#include <string>
#include "base/containers/span.h"
#include "base/strings/strcat_internal.h"
#include "base/strings/string_piece.h"
namespace base {
std::wstring StrCat(span<const WStringPiece> pieces) {
return internal::StrCatT(pieces);
}
std::wstring StrCat(span<const std::wstring> pieces) {
return internal::StrCatT(pieces);
}
void StrAppend(std::wstring* dest, span<const WStringPiece> pieces) {
internal::StrAppendT(*dest, pieces);
}
void StrAppend(std::wstring* dest, span<const std::wstring> pieces) {
internal::StrAppendT(*dest, pieces);
}
} // namespace base
|