Function call operators

Synopses

Declared in <baljsn_jsontokenizer.h>

Process the specified array during visitation of a bdljsn::Json object.

void
operator()(bdljsn::JsonArray const& array) const;

Process the specified object during visitation of a bdljsn::Json object.

void
operator()(bdljsn::JsonObject const& object) const;

Ignore the specified parameter during visitation of a scalar JSON value.

template<class TYPE>
void
operator()(TYPE const& parameter) const;

Parameters

Name

Description

array

JSON array being visited

object

JSON object being visited

parameter

scalar JSON value that is not tokenized

Created with MrDocs