Invoke visitor on the value held by this object.
Declared in <bdljsn_json.h>
Invoke visitor on the value held by this object.
template<class VISITOR>
decltype(auto)
visit(VISITOR&& visitor);
» more...
Invoke visitor on the value held by this object.
template<class VISITOR>
decltype(auto)
visit(VISITOR&& visitor) const;
» more...
Invoke visitor on the value held by this object.
template<
class RETURN_TYPE,
class VISITOR>
RETURN_TYPE
visit(VISITOR&& visitor);
» more...
Invoke visitor on the value held by this object.
template<
class RETURN_TYPE,
class VISITOR>
RETURN_TYPE
visit(VISITOR&& visitor) const;
» more...
visitor (callable) object on this Json objectRETURN_TYPE) of invoking the specified visitor (callable) object on this Json object| Name | Description |
|---|---|
| visitor | callable invoked with the held value |