MCPcopy Create free account
hub / github.com/catboost/catboost / SetValue

Method SetValue

library/cpp/containers/dense_hash/dense_hash.h:403–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

401 // Tricky way to set value of type with const fields
402 template <class... Args>
403 void SetValue(value_type& bucket, Args&&... args) {
404 bucket.~value_type();
405 new (&bucket) value_type(std::forward<Args>(args)...);
406 }
407
408 template <class... Args>
409 void SetValue(size_type idx, Args&&... args) {

Callers

nothing calls this directly

Calls 1

SetValueFunction · 0.50

Tested by

no test coverage detected