| 171 | |
| 172 | template <typename Arg> |
| 173 | Status Finish(Arg&& arg) { |
| 174 | return MakeScalar(array_.type(), std::forward<Arg>(arg)).Value(&out_); |
| 175 | } |
| 176 | |
| 177 | Status Finish(std::string arg) { |
| 178 | return MakeScalar(array_.type(), Buffer::FromString(std::move(arg))).Value(&out_); |
no test coverage detected