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

Method emplace

src/fl/stl/unordered_map_small.h:334–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332 // Emplace
333 template <typename... Args>
334 fl::pair<iterator, bool> emplace(Args&&... args) FL_NOEXCEPT {
335 value_type kv(fl::forward<Args>(args)...);
336 return insert(fl::move(kv));
337 }
338
339 // Erase — clears occupied bit, iterator stable
340 iterator erase(iterator pos) FL_NOEXCEPT {

Callers

nothing calls this directly

Calls 1

insertFunction · 0.70

Tested by

no test coverage detected