MCPcopy Create free account
hub / github.com/Norbyte/bg3se / Find

Method Find

CoreLib/Base/SparseArray.h:267–273  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265 }
266
267 TValue const* Find(TKey const& key) const
268 {
269 auto index = FindIndex(key);
270 if (index == InvalidIndex) return nullptr;
271
272 return &Values[index];
273 }
274
275 TValue* Find(TKey const& key)
276 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected