330 template <
typename JsonT>
331 std::enable_if_t<std::is_same<std::decay_t<JsonT>,
Json>::value,
Json>
332 search(
const Expression& expression, JsonT&& document);
template Json search< const Json & >(const Expression &, const Json &)
Explicit instantiation declaration for Search function to prevent implicit instantiation in client co...
nlohmann::json Json
JSON data type.
Definition: types.h:66
template Json search< Json >(const Expression &, Json &&)
Explicit instantiation declaration for Search function to prevent implicit instantiation in client co...
std::enable_if_t< std::is_same< std::decay_t< JsonT >, Json >::value, Json > search(const Expression &expression, JsonT &&document)
Finds or creates the results for the expression evaluated on the given document.
Definition: jmespath.cpp:36
template Json search< Json & >(const Expression &, Json &)
Explicit instantiation declaration for Search function to prevent implicit instantiation in client co...