jmespath.cpp
C++ implementation of JMESPath, a query language for JSON http://jmespath.org
|
The ListWildcardNode class represents a JMESPath list wildcard expression. More...
#include <listwildcardnode.h>
Public Member Functions | |
ListWildcardNode () | |
Constructs a ListWildcardNode object. More... | |
void | accept (interpreter::AbstractVisitor *visitor) const override |
Calls the visit method of the given visitor with the dynamic type of the node. More... | |
bool | operator== (const ListWildcardNode &other) const |
Equality compares this node to the other. More... | |
![]() | |
AbstractNode ()=default | |
Constructs an AbstractNode object. More... | |
AbstractNode (const AbstractNode &)=default | |
Copy-constructs an AbstractNode object. More... | |
virtual | ~AbstractNode () |
Destroys the AbstractNode object. More... | |
AbstractNode & | operator= (const AbstractNode &)=default |
Copy-assigns the other object to this object. More... | |
The ListWildcardNode class represents a JMESPath list wildcard expression.
jmespath::ast::ListWildcardNode::ListWildcardNode | ( | ) |
Constructs a ListWildcardNode object.
|
overridevirtual |
Calls the visit method of the given visitor with the dynamic type of the node.
[in] | visitor | A visitor implementation |
Implements jmespath::ast::AbstractNode.
bool jmespath::ast::ListWildcardNode::operator== | ( | const ListWildcardNode & | other | ) | const |
Equality compares this node to the other.
[in] | other | The node that should be compared. |