| 1044 | |
| 1045 | template <typename Arg> |
| 1046 | Status Finish(Arg&& arg) { |
| 1047 | return MakeScalar(std::move(type_), std::forward<Arg>(arg)).Value(&out_); |
| 1048 | } |
| 1049 | |
| 1050 | Status FinishWithBuffer() { return Finish(Buffer::FromString(std::string(s_))); } |
| 1051 |
nothing calls this directly
no test coverage detected