|
jmespath.cpp
C++ implementation of JMESPath, a query language for JSON http://jmespath.org
|
Namespaces | |
| jmespath | |
| The top level namespace which contains the public functions of the library. | |
Functions | |
| template<typename JsonT > | |
| std::enable_if_t< std::is_same < std::decay_t< JsonT >, Json > ::value, Json > | jmespath::search (const Expression &expression, JsonT &&document) |
| Finds or creates the results for the expression evaluated on the given document. More... | |
| template Json | jmespath::search< const Json & > (const Expression &, const Json &) |
| Explicit instantiation declaration for Search function to prevent implicit instantiation in client code. More... | |
| template Json | jmespath::search< Json & > (const Expression &, Json &) |
| Explicit instantiation declaration for Search function to prevent implicit instantiation in client code. More... | |
| template Json | jmespath::search< Json > (const Expression &, Json &&) |
| Explicit instantiation declaration for Search function to prevent implicit instantiation in client code. More... | |
1.8.6