BloombergLP::balb::PipeControlChannel_CStringUtil::flatten

flatten overloads

Synopses

Declared in <balb_pipecontrolchannel.h>

Return a temporary bsl::string constructed from the specified stringRef.

static
bsl::string
flatten(bslstl::StringRef const& stringRef);
» more...

Return the result of invoking c_str() on the specified string.

static
char const*
flatten(bsl::string const& string);
» more...

Return the result of invoking c_str() on the specified string.

static
char const*
flatten(std::pmr::string const& string);
» more...

Return the result of invoking c_str() on the specified string.

static
char const*
flatten(std::string const& string);
» more...

Return the specified cString.

static
char const*
flatten(char* cString);
» more...

Return the specified cString.

static
char const*
flatten(char const* cString);
» more...

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);
» more...

Return Value

  • temporary bsl::string constructed from stringRef
  • null-terminated string from string.c_str()
  • the specified cString
  • never returns; this overload causes a compile-time error

Parameters

NameDescription
stringRefstring reference used to construct the temporary
stringstring whose c_str() result is returned
cStringnull-terminated C string to return
valueobject of an unsupported type