MCPcopy Create free account
hub / github.com/alibaba/PhotonLibOS / seek_existance

Method seek_existance

common/unordered_inline_set.h:192–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190
191protected:
192 size_t seek_existance(size_t i, size_t delta) {
193 for (; i < _capacity; i += delta)
194 if (get_bit(i))
195 return i;
196 return _capacity;
197 }
198 iterator _begin() noexcept {
199 return {this, seek_existance(0, 1)};
200 }

Callers 1

seekMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected