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

Function GetValues

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

Source from the content-addressed store, hash-verified

736 /// <param name="result">The result.</param>
737 template<typename ArrayAllocation>
738 void GetValues(Array<ValueType, ArrayAllocation>& result) const
739 {
740 for (ConstIterator i = Begin(); i.IsNotEnd(); ++i)
741 result.Add(i->Value);
742 }
743
744public:
745 Iterator Begin()

Callers

nothing calls this directly

Calls 3

BeginFunction · 0.70
IsNotEndMethod · 0.45
AddMethod · 0.45

Tested by

no test coverage detected