MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetKeys

Function GetKeys

Source/Engine/Core/Collections/Dictionary.h:727–731  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

725 /// <param name="result">The result.</param>
726 template<typename ArrayAllocation>
727 void GetKeys(Array<KeyType, ArrayAllocation>& result) const
728 {
729 for (ConstIterator i = Begin(); i.IsNotEnd(); ++i)
730 result.Add(i->Key);
731 }
732
733 /// <summary>
734 /// Gets the values collection to the output array (may contain duplicates).

Callers

nothing calls this directly

Calls 3

BeginFunction · 0.70
IsNotEndMethod · 0.45
AddMethod · 0.45

Tested by

no test coverage detected