[#BloombergLP-bdld-Datum-createStringRef-04e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdld.adoc[bdld]::xref:BloombergLP/bdld/Datum.adoc[Datum]::createStringRef :relfileprefix: ../../../ :mrdocs: `createStringRef` overloads == Synopses Declared in `<bdld_datum.h>` Return, by value, a datum having the specified `StringRef` `value`, using the specified `allocator` to supply memory (if needed). The behavior is undefined unless `value.length() <= UINT_MAX`. Note that `string` is not copied, and is not freed if `Datum::destroy` is called on the returned object. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdld/Datum.adoc[Datum] xref:BloombergLP/bdld/Datum/createStringRef-04b.adoc[createStringRef]( xref:BloombergLP/bslstl/StringRef.adoc[bslstl::StringRef] const& value, xref:BloombergLP/bdld/Datum/AllocatorType.adoc[AllocatorType] const& allocator); ---- [.small]#xref:BloombergLP/bdld/Datum/createStringRef-04b.adoc[_» more..._]# Return, by value, a datum that refers to the specified `string`, using the specified `allocator` to supply memory (if needed). The behavior is undefined unless `string` points to a UTF‐8 encoded c‐string. The behavior is also undefined unless 'strlen(string) <= UINT_MAX'. Note that `string` is not copied, and is not freed if `Datum::destroy` is called on the returned object. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdld/Datum.adoc[Datum] xref:BloombergLP/bdld/Datum/createStringRef-01.adoc[createStringRef]( char const* string, xref:BloombergLP/bdld/Datum/AllocatorType.adoc[AllocatorType] const& allocator); ---- [.small]#xref:BloombergLP/bdld/Datum/createStringRef-01.adoc[_» more..._]# Return, by value, a datum that refers to the specified `string` having the specified `length`, using the specified `allocator` to supply memory (if needed). The behavior is undefined unless `0 != string || 0 == length`. The behavior is also undefined unless `length <= UINT_MAX`. Note that `string` is not copied, and is not freed if `Datum::destroy` is called on the returned object. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdld/Datum.adoc[Datum] xref:BloombergLP/bdld/Datum/createStringRef-0e.adoc[createStringRef]( char const* string, xref:BloombergLP/bdld/Datum/SizeType.adoc[SizeType] length, xref:BloombergLP/bdld/Datum/AllocatorType.adoc[AllocatorType] const& allocator); ---- [.small]#xref:BloombergLP/bdld/Datum/createStringRef-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#