| 
    jmespath.cpp
    
   C++ implementation of JMESPath, a query language for JSON http://jmespath.org 
   | 
 
The RawStringNode class represents a JMESPath raw string literal. More...
#include <rawstringnode.h>
  
 Public Member Functions | |
| RawStringNode () | |
| Constructs an empty RawStringNode object.  More... | |
| RawStringNode (const String &string) | |
| Constructs a RawStringNode object with its value initialized to string.  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 RawStringNode &other) const | 
| Equality compares this node to the other.  More... | |
  Public Member Functions inherited from jmespath::ast::AbstractNode | |
| 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... | |
Public Attributes | |
| String | rawString | 
| The raw string value.  More... | |
The RawStringNode class represents a JMESPath raw string literal.
| jmespath::ast::RawStringNode::RawStringNode | ( | ) | 
Constructs an empty RawStringNode object.
| jmespath::ast::RawStringNode::RawStringNode | ( | const String & | string | ) | 
Constructs a RawStringNode object with its value initialized to string.
| [in] | string | The raw string value. | 
      
  | 
  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::RawStringNode::operator== | ( | const RawStringNode & | other | ) | const | 
Equality compares this node to the other.
| [in] | other | The node that should be compared. | 
| String jmespath::ast::RawStringNode::rawString | 
The raw string value.
 1.8.6