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

Method IsFull

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

Source from the content-addressed store, hash-verified

19 }
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)

Callers 1

UpdateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected