Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
catch_stringref.h File Reference
#include <cstddef>
#include <string>
#include <iosfwd>
Include dependency graph for catch_stringref.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Catch::StringRef
 

Namespaces

namespace  Catch
 

Functions

auto Catch::operator+ (StringRef const &lhs, StringRef const &rhs) -> std::string
 
auto Catch::operator+ (StringRef const &lhs, const char *rhs) -> std::string
 
auto Catch::operator+ (char const *lhs, StringRef const &rhs) -> std::string
 
auto Catch::operator+= (std::string &lhs, StringRef const &rhs) -> std::string &
 
auto Catch::operator<< (std::ostream &os, StringRef const &str) -> std::ostream &
 
auto Catch::operator""_sr (char const *rawChars, std::size_t size) noexcept -> StringRef
 
auto operator""_catch_sr (char const *rawChars, std::size_t size) noexcept -> Catch::StringRef
 

Function Documentation

◆ operator""_catch_sr()

auto operator""_catch_sr ( char const * rawChars,
std::size_t size ) -> Catch::StringRef
inlinenoexcept

Definition at line 128 of file catch_stringref.h.

128 {
129 return Catch::StringRef( rawChars, size );
130}