| 490 | |
| 491 | template <class T> |
| 492 | void from_value_op(T& x, const value& v) |
| 493 | { |
| 494 | if(not(v.is_object() or (v.empty() and v.is_array()))) |
| 495 | MIGRAPHX_THROW("Value is not an object"); |
| 496 | return migraphx::from_value(v, x); |
| 497 | } |
| 498 | |
| 499 | template <class T> |
| 500 | lifetime get_lifetime_op(const T&) |
nothing calls this directly
no test coverage detected