| 226 | |
| 227 | template <typename T> |
| 228 | bool DecodeVariant(VariantTensorData* data, T* value) { |
| 229 | return DecodeVariantImpl(std::move(*data), TypeResolver<T>(), value); |
| 230 | } |
| 231 | |
| 232 | template <typename T> |
| 233 | void EncodeVariant(const T& value, string* buf) { |
nothing calls this directly
no test coverage detected