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

◆ append() [2/2]

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

Definition at line 154 of file unordered_map_small.h.

154 {
155 size_type idx = mData.size();
156 mData.push_back(fl::move(kv));
157 mOccupied.resize(idx + 1);
158 mOccupied.set(idx);
159 ++mSize;
160 return idx;
161 }

References FL_NOEXCEPT, mData, mOccupied, fl::fl::move(), and mSize.

+ Here is the call graph for this function: