MCPcopy Create free account
hub / github.com/apache/arrow / Deserialize

Method Deserialize

cpp/src/arrow/flight/types.h:210–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 }
209
210 inline static arrow::Result<T> Deserialize(std::string_view serialized) {
211 T out;
212 ARROW_RETURN_NOT_OK(SelfT::Deserialize(serialized, &out));
213 return out;
214 }
215
216 inline arrow::Result<std::shared_ptr<Buffer>> SerializeToBuffer() const {
217 std::string out;

Callers

nothing calls this directly

Calls 1

DeserializeFunction · 0.50

Tested by

no test coverage detected