chromium/base/strings/strcat.cc

// Copyright 2017 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.h"

#include <string>
#include <string_view>

#include "base/strings/strcat_internal.h"

namespace base {

std::string StrCat(span<const std::string_view> pieces) {}

std::u16string StrCat(span<const std::u16string_view> pieces) {}

std::string StrCat(span<const std::string> pieces) {}

std::u16string StrCat(span<const std::u16string> pieces) {}

void StrAppend(std::string* dest, span<const std::string_view> pieces) {}

void StrAppend(std::u16string* dest, span<const std::u16string_view> pieces) {}

void StrAppend(std::string* dest, span<const std::string> pieces) {}

void StrAppend(std::u16string* dest, span<const std::u16string> pieces) {}

}  // namespace base