MCPcopy Create free account
hub / github.com/apache/fory / Field

Method Field

cpp/fory/row/schema.h:231–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229class Field {
230public:
231 Field(std::string name, DataTypePtr type, bool nullable = true,
232 std::unordered_map<std::string, std::string> metadata = {})
233 : name_(std::move(name)), type_(std::move(type)), nullable_(nullable),
234 metadata_(std::move(metadata)) {}
235
236 const std::string &name() const { return name_; }
237

Callers 15

validateOptionalFieldsFunction · 0.45
TestParseFieldSpecBasicFunction · 0.45
TestShouldIncludeFieldFunction · 0.45
writeRemainingFieldMethod · 0.45
readRemainingFieldMethod · 0.45
readFieldsInOrderMethod · 0.45
validateForyTagsFunction · 0.45
initFieldsMethod · 0.45

Calls

no outgoing calls