MCPcopy Create free account
hub / github.com/FastLED/FastLED / is_empty

Function is_empty

src/fl/stl/unordered_map.h:813–815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

811 bool is_deleted(fl::size idx) const { return _deleted.test(idx); }
812
813 bool is_empty(fl::size idx) const {
814 return !is_occupied(idx) && !is_deleted(idx);
815 }
816
817 void mark_occupied(fl::size idx) {
818 _occupied.set(idx);

Callers 2

find_slotFunction · 0.85
find_indexFunction · 0.85

Calls 2

is_occupiedFunction · 0.85
is_deletedFunction · 0.85

Tested by

no test coverage detected