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

Method emplace

src/fl/stl/flat_set.h:245–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243 // Emplace
244 template <typename... Args>
245 fl::pair<iterator, bool> emplace(Args&&... args) {
246 value_type value(fl::forward<Args>(args)...);
247 return insert(value);
248 }
249
250 template <typename... Args>
251 iterator emplace_hint(const_iterator hint, Args&&... args) {

Callers

nothing calls this directly

Calls 1

insertFunction · 0.70

Tested by

no test coverage detected