Function call operators
Declared in <baljsn_jsontokenizer.h>
Process the specified array during visitation of a bdljsn::Json object.
void
operator()(bdljsn::JsonArray const& array) const;
» more...
Process the specified object during visitation of a bdljsn::Json object.
void
operator()(bdljsn::JsonObject const& object) const;
» more...
Ignore the specified parameter during visitation of a scalar JSON value.
template<class TYPE>
void
operator()(TYPE const& parameter) const;
» more...
| Name | Description |
|---|---|
| array | JSON array being visited |
| object | JSON object being visited |
| parameter | scalar JSON value that is not tokenized |