flatten overloads
Synopses
Declared in <bdls_filesystemutil.h>
Return a temporary bsl::string constructed from the specified stringRef.
static
bsl::string
flatten(bslstl::StringRef const& stringRef);
Return the result of invoking c_str() on the specified string.
static
char const*
flatten(bsl::string const& string);
Return a null‐terminated C string for the specified string.
static
char const*
flatten(std::pmr::string const& string);
Return a null‐terminated C string for the specified string.
static
char const*
flatten(std::string const& string);
Return a temporary bsl::string constructed from the specified stringView.
static
bsl::string
flatten(std::string_view const& stringView);
Return the specified cString.
static
char const*
flatten(char* cString);
Return the specified cString.
static
char const*
flatten(char const* cString);
Produce a compile‐time error informing the caller that the parameterized TYPE is not supported as the parameter for the call.
template<class TYPE>
static
char const*
flatten(TYPE const& value);
Return Value
-
a temporary
bsl::stringconstructed fromstringRef -
the null‐terminated C string from
string.c_str() -
a temporary
bsl::stringconstructed fromstringView -
the specified
cString -
never returns; the call is ill‐formed for unsupported
TYPE
Parameters
Name |
Description |
stringRef |
string reference used to construct the temporary |
string |
string whose |
stringView |
string view used to construct the temporary |
cString |
null‐terminated C string to return |
value |
object of an unsupported type |
Created with MrDocs