| 112 | inline bool AtFront() const { return (m_position == 0); } |
| 113 | inline bool AtEnd() const { return (m_position + 1 == GetMemory().GetSize()); } |
| 114 | inline bool InMemory() const { return (m_position >= 0 && m_position < GetMemory().GetSize()); } |
| 115 | }; |
| 116 | |
| 117 |
no test coverage detected