MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / removeCount

Method removeCount

src/common/classes/array.h:285–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283 }
284
285 T* removeCount(const size_type index, const size_type n) throw()
286 {
287 fb_assert(index + n <= count);
288 memmove(data + index, data + index + n, sizeof(T) * (count - index - n));
289 count -= n;
290 return &data[index];
291 }
292
293 T* remove(T* itr) throw()
294 {

Callers 5

getMethod · 0.45
regetMethod · 0.45
remainedMethod · 0.45
BLB_check_well_formedMethod · 0.45
deleteClumpletMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected