[#BloombergLP-bslim-FuzzUtil-consumeRandomLengthChars-06] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslim.adoc[bslim]::xref:BloombergLP/bslim/FuzzUtil.adoc[FuzzUtil]::consumeRandomLengthChars :relfileprefix: ../../../ :mrdocs: `consumeRandomLengthChars` overloads == Synopses Declared in `<bslim_fuzzutil.h>` Load into the specified `output` a sequence of characters of length from 0 to the specified `maxLength`. If the specified `fuzzDataView` has fewer bytes than `maxLength`, load at most `fuzzDataView‐>length()` bytes into `output`. If the buffer in `fuzzDataView` contains two successive backslash characters, then in `output` they will be converted to a single backslash () character; if a single backslash character is encountered, the consumption of bytes is terminated. Note that because double backslashes are mapped to single backslashes, more than `maxLength` bytes may be consumed from the buffer to produce the `output`. Also note that the purpose of this function is to enable the creation of a non‐zero‐terminated `string_view`, which is not possible with the `string` counterpart. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0a.adoc[consumeRandomLengthChars]( xref:bsl/vector-00d.adoc[bsl::vector<char>]* output, xref:BloombergLP/bslim/FuzzDataView.adoc[FuzzDataView]* fuzzDataView, std::size_t maxLength); ---- [.small]#xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0a.adoc[_» more..._]# Same as the preceding overload for `std::pmr::vector<char>`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0e3.adoc[consumeRandomLengthChars]( std::pmr::vector<char>* output, xref:BloombergLP/bslim/FuzzDataView.adoc[FuzzDataView]* fuzzDataView, std::size_t maxLength); ---- [.small]#xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0e3.adoc[_» more..._]# Same as the preceding overload for `std::vector<char>`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0ed.adoc[consumeRandomLengthChars]( std::vector<char>* output, xref:BloombergLP/bslim/FuzzDataView.adoc[FuzzDataView]* fuzzDataView, std::size_t maxLength); ---- [.small]#xref:BloombergLP/bslim/FuzzUtil/consumeRandomLengthChars-0ed.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#