| 22 | |
| 23 | template<typename T, typename... Context> |
| 24 | void binary_parse(const cn::BinaryArray &msg, Context... context) { |
| 25 | try { |
| 26 | T t{}; |
| 27 | seria::from_binary(t, msg, context...); |
| 28 | sideeffect(true); |
| 29 | } catch (const std::exception &ex) { |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | template<typename T> |
| 34 | void levin_parse(const cn::BinaryArray &msg) { |
nothing calls this directly
no test coverage detected