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

Method Make

cpp/src/arrow/csv/converter.cc:116–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114 Trie false_trie;
115
116 static Result<std::shared_ptr<TrieCache>> Make(const ConvertOptions& options) {
117 auto cache = std::make_shared<TrieCache>();
118 RETURN_NOT_OK(InitializeTrie(options.null_values, &cache->null_trie));
119 RETURN_NOT_OK(InitializeTrie(options.true_values, &cache->true_trie));
120 RETURN_NOT_OK(InitializeTrie(options.false_values, &cache->false_trie));
121 return cache;
122 }
123};
124
125/////////////////////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 1

InitializeTrieFunction · 0.85

Tested by

no test coverage detected