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

Method Get

cpp/src/arrow/engine/substrait/options.cc:234–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 explicit ConfigurableSingleton(T new_value) : instance(std::move(new_value)) {}
233
234 T Get() {
235 std::lock_guard lk(mutex);
236 return instance;
237 }
238
239 void Set(T new_value) {
240 std::lock_guard lk(mutex);

Calls

no outgoing calls

Tested by

no test coverage detected