guidToString overloads
Synopses
Declared in <bdlb_guidutil.h>
Convert the specified guid into a string suitable for guidFromString, and return the string.
static
bsl::string
guidToString(Guid const& guid);
Serialize the specified guid into the specified result. The result string will be in a format suitable for guidFromString.
static
void
guidToString(
bsl::string* result,
Guid const& guid);
See the overload above for contract.
static
void
guidToString(
std::pmr::string* result,
Guid const& guid);
See the overload above for contract.
static
void
guidToString(
std::string* result,
Guid const& guid);
Return Value
guid formatted as a string suitable for guidFromString
Parameters
Name |
Description |
guid |
GUID to convert to a string |
result |
string to receive the formatted GUID |
Created with MrDocs