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

Method Dequeue

Source/Engine/Core/Collections/Array.h:813–819  ·  view source on GitHub ↗

Performs dequeue from queue operation (queue head is in the beginning of queue). The item.

Source from the content-addressed store, hash-verified

811 /// </summary>
812 /// <returns>The item.</returns>
813 T Dequeue()
814 {
815 ASSERT(HasItems());
816 T item = MoveTemp(_allocation.Get()[0]);
817 RemoveAtKeepOrder(0);
818 return item;
819 }
820
821public:
822 /// <summary>

Callers 6

UpdateMethod · 0.45
UpdateMethod · 0.45
FormatGraphMethod · 0.45
PerformMethod · 0.45
WorkerMainMethod · 0.45
OnUpdateFunction · 0.45

Calls 2

HasItemsFunction · 0.85
GetMethod · 0.45

Tested by

no test coverage detected