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

Function GetItems

Source/Engine/Core/Collections/HashSet.h:548–552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

546 /// <param name="result">The result.</param>
547 template<typename ArrayAllocation>
548 void GetItems(Array<T, ArrayAllocation>& result) const
549 {
550 for (ConstIterator i = Begin(); i.IsNotEnd(); ++i)
551 result.Add(i->Item);
552 }
553
554public:
555 Iterator Begin()

Callers

nothing calls this directly

Calls 3

BeginFunction · 0.70
IsNotEndMethod · 0.45
AddMethod · 0.45

Tested by

no test coverage detected