| 154 | } |
| 155 | |
| 156 | argument argument::convert(shape::type_t t) const |
| 157 | { |
| 158 | argument result{this->get_shape().with_type(t)}; |
| 159 | this->visit([&](auto x) { result.fill(x.begin(), x.end()); }); |
| 160 | return result; |
| 161 | } |
| 162 | |
| 163 | argument::data_t argument::data_t::share() const |
| 164 | { |