| 863 | } |
| 864 | |
| 865 | int main() |
| 866 | { |
| 867 | std::cout << "\njsonpath examples\n\n"; |
| 868 | json_query_examples(); |
| 869 | |
| 870 | jsonpath_complex_examples(); |
| 871 | jsonpath_union(); |
| 872 | flatten_and_unflatten(); |
| 873 | more_json_query_examples(); |
| 874 | make_expression_examples(); |
| 875 | more_make_expression_example(); |
| 876 | json_query_with_options_example(); |
| 877 | make_expression_with_callback_example(); |
| 878 | json_query_with_callback_example(); |
| 879 | json_replace_example2(); |
| 880 | json_replace_example3(); |
| 881 | json_replace_example1(); |
| 882 | json_replace_example4(); |
| 883 | function_tokenize_example(); |
| 884 | function_sum_example(); |
| 885 | function_avg_example(); |
| 886 | function_length_example(); |
| 887 | function_keys_example(); |
| 888 | search_for_and_replace_a_value(); |
| 889 | |
| 890 | custom_functions1(); |
| 891 | custom_functions2(); |
| 892 | |
| 893 | function_floor_example(); |
| 894 | function_ceil_example(); |
| 895 | |
| 896 | union_example(); |
| 897 | parent_operator_example(); |
| 898 | |
| 899 | make_expression_with_stateful_allocator(); |
| 900 | |
| 901 | std::cout << "\n"; |
| 902 | } |
| 903 |
nothing calls this directly
no test coverage detected