| 387 | |
| 388 | void value::clear() { get_array_throw(x).clear(); } |
| 389 | void value::resize(std::size_t n) |
| 390 | { |
| 391 | if(not is_array()) |
| 392 | MIGRAPHX_THROW("Expected an array."); |
| 393 | get_array_impl(x).resize(n); |
| 394 | } |
| 395 | void value::resize(std::size_t n, const value& v) |
| 396 | { |
| 397 | if(not is_array()) |
no outgoing calls