FastLED 3.9.15
Loading...
Searching...
No Matches

◆ mark_deleted()

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
void fl::HashMap< Key, T, Hash, KeyEqual, INLINED_COUNT >::mark_deleted ( fl::size idx)
inlineprivate

Definition at line 426 of file hash_map.h.

426 {
427 _occupied.reset(idx);
428 _deleted.set(idx);
429 }
fl::bitset< 1024 > _deleted
Definition hash_map.h:706
fl::bitset< 1024 > _occupied
Definition hash_map.h:705