Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ emplace
Method
emplace
src/fl/stl/unordered_set.h:99–102 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
97
// Emplace - construct in place
98
template<typename... Args>
99
bool emplace(Args&&... args) {
100
Key key(fl::forward<Args>(args)...);
101
return insert(fl::move(key));
102
}
103
104
// Find operations
105
iterator find(const Key &key) {
Callers
nothing calls this directly
Calls
1
insert
Function · 0.70
Tested by
no test coverage detected