MCPcopy Create free account
hub / github.com/DFHack/dfhack / size

Method size

library/include/BitArray.h:461–469  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

459 return static_cast<const L *>(this)->next == nullptr;
460 }
461 size_t size() const
462 {
463 size_t n = 0;
464 for (auto It = this->cbegin(); It != this->cend(); ++It)
465 {
466 n++;
467 }
468 return n;
469 }
470
471 iterator begin()
472 {

Callers

nothing calls this directly

Calls 2

cbeginMethod · 0.95
cendMethod · 0.95

Tested by

no test coverage detected