MCPcopy Create free account
hub / github.com/adriancable/eternal / Find

Method Find

doom/src/tarray.h:229–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227 }
228
229 unsigned int Find(const T& item) const
230 {
231 unsigned int i;
232 for(i = 0;i < Count;++i)
233 {
234 if(Array[i] == item)
235 break;
236 }
237 return i;
238 }
239
240 unsigned int Push (const T &item)
241 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected