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

Method First

Source/Engine/Core/Collections/SamplesBuffer.h:95–99  ·  view source on GitHub ↗

Gets the first element value.

Source from the content-addressed store, hash-verified

93 /// Gets the first element value.
94 /// </summary>
95 FORCE_INLINE T First() const
96 {
97 ASSERT(HasItems());
98 return _data[0];
99 }
100
101 /// <summary>
102 /// Gets last element value.

Callers 15

GetRootGraphMethod · 0.45
UpdateMethod · 0.45
BindMethod · 0.45
LoadAssemblyImageMethod · 0.45
EngineServiceMethod · 0.45
HitTestTextMethod · 0.45
FindDistanceToWallMethod · 0.45
FindPathMethod · 0.45
TestPathMethod · 0.45
FindClosestPointMethod · 0.45
FindRandomPointMethod · 0.45

Calls 1

HasItemsFunction · 0.85

Tested by 1

TestPathMethod · 0.36