[#BloombergLP-balxml-Decoder_ListParser] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/balxml.adoc[balxml]::Decoder_ListParser :relfileprefix: ../../ :mrdocs: COMPONENT‐PRIVATE CLASS. DO NOT USE OUTSIDE OF THIS COMPONENT. == Synopsis Declared in `<balxml_decoder.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> class Decoder_ListParser; ---- == Description This is a wrapper around `ListParser<TYPE>`. The `Decoder_PushParserContext` class needs a default constructible push parser. However, `ListParser<TYPE>` is not default constructible ‐ it requires an `parseElementCallback`. This wrapper provides a default constructor that passes `TypesParserUtil::parseDefault` as the callback. == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/balxml/Decoder_ListParser/2constructor.adoc[`Decoder_ListParser`] [.small]#[constructor]# | Create a list parser that uses `TypesParserUtil::parseDefault` as the element callback. | xref:BloombergLP/balxml/Decoder_ListParser/beginParse.adoc[`beginParse`] | Begin parsing into the specified `object`. Return 0 on success, and a non‐zero value otherwise. | xref:BloombergLP/balxml/Decoder_ListParser/endParse.adoc[`endParse`] | Finish parsing the current list. Return 0 on success, and a non‐zero value otherwise. | xref:BloombergLP/balxml/Decoder_ListParser/pushCharacters.adoc[`pushCharacters`] | Append character data from the specified iterator range `[begin, end)]` to the current list parse. Return 0 on success, and a non‐zero value otherwise. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#