Files
Catch2/src/catch2/internal/catch_stringref.cpp
T

50 lines
1.5 KiB
C++
Raw Normal View History

// Copyright Catch2 Authors
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
// SPDX-License-Identifier: BSL-1.0
2020-05-10 10:09:01 +02:00
#include <catch2/internal/catch_stringref.hpp>
2017-06-29 11:18:14 +01:00
2019-10-21 17:44:11 +02:00
#include <algorithm>
2017-06-29 11:18:14 +01:00
#include <ostream>
#include <cstring>
#include <cstdint>
2017-06-29 11:18:14 +01:00
namespace Catch {
StringRef::StringRef( char const* rawChars ) noexcept
: StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) )
{}
2017-06-29 11:18:14 +01:00
auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool {
2019-10-21 17:44:11 +02:00
return m_size == other.m_size
&& (std::memcmp( m_start, other.m_start, m_size ) == 0);
2017-06-29 11:18:14 +01:00
}
bool StringRef::operator<(StringRef const& rhs) const noexcept {
if (m_size < rhs.m_size) {
return strncmp(m_start, rhs.m_start, m_size) <= 0;
}
return strncmp(m_start, rhs.m_start, rhs.m_size) < 0;
}
2017-08-14 08:50:44 +01:00
auto operator << ( std::ostream& os, StringRef const& str ) -> std::ostream& {
2019-10-21 17:44:11 +02:00
return os.write(str.data(), str.size());
2017-06-29 11:18:14 +01:00
}
std::string operator+(StringRef lhs, StringRef rhs) {
std::string ret;
ret.reserve(lhs.size() + rhs.size());
ret += lhs;
ret += rhs;
return ret;
}
auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& {
2019-10-21 17:44:11 +02:00
lhs.append(rhs.data(), rhs.size());
return lhs;
}
2017-06-29 11:18:14 +01:00
} // namespace Catch