| 837 | |
| 838 | template <typename F> |
| 839 | static td::Status process_string_or_array(Ctx &ctx, F &&run) { |
| 840 | if (ctx.is_array()) { |
| 841 | return ctx.process_array(true, std::move(run)); |
| 842 | } |
| 843 | return process_string(ctx); |
| 844 | } |
| 845 | |
| 846 | template <typename F> |
| 847 | static td::Status process_string_or_object(Ctx &ctx, F &&run) { |
no test coverage detected