MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / Size

Method Size

LuaSTGPlus/CirularQueue.hpp:22–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20 bool IsEmpty() { return m_Front == m_Rear; }
21 bool IsFull() { return (m_Front == (m_Rear + 1) % MaxSize); }
22 size_t Size() { return m_Count; }
23 size_t Max() { return MaxSize - 1; }
24 bool Push(T val)
25 {

Callers 5

UpdateMethod · 0.45
RenderMethod · 0.45
CollisionCheckMethod · 0.45
BoundCheckMethod · 0.45
GetObjectCountMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected