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

◆ append() [1/2]

template<typename Key, typename Value, typename Equal = fl::SmallMapEqualTo<Key>>
size_type fl::unordered_map_small< Key, Value, Equal >::append ( const value_type & kv)
inlineprivate

Definition at line 145 of file unordered_map_small.h.

145 {
146 size_type idx = mData.size();
147 mData.push_back(kv);
148 mOccupied.resize(idx + 1);
149 mOccupied.set(idx);
150 ++mSize;
151 return idx;
152 }

References FL_NOEXCEPT, mData, mOccupied, and mSize.

Referenced by do_insert(), and do_insert().

+ Here is the caller graph for this function: