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

Method push

src/fl/stl/priority_queue.h:208–210  ·  view source on GitHub ↗

* @brief Push an element into the priority queue * @param value Element to insert */

Source from the content-addressed store, hash-verified

206 * @param value Element to insert
207 */
208 void push(const T& value) {
209 mQueue.push({value, mNextSequence++});
210 }
211
212 template<typename... Args>
213 void emplace(Args&&... args) {

Callers

nothing calls this directly

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected