jmespath.cpp
C++ implementation of JMESPath, a query language for JSON http://jmespath.org
|
The FlattenOperatorNode class represents a JMESPath flatten operator. More...
#include <flattenoperatornode.h>
Public Member Functions | |
FlattenOperatorNode () | |
Constructs a FlattenOperatorNode 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 FlattenOperatorNode &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 FlattenOperatorNode class represents a JMESPath flatten operator.
jmespath::ast::FlattenOperatorNode::FlattenOperatorNode | ( | ) |
Constructs a FlattenOperatorNode 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::FlattenOperatorNode::operator== | ( | const FlattenOperatorNode & | other | ) | const |
Equality compares this node to the other.
[in] | other | The node that should be compared. |