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

◆ erase() [1/2]

template<typename T, typename Allocator = fl::allocator<T>>
void fl::HeapVector< T, Allocator >::erase ( const T & value)
inline

Definition at line 580 of file vector.h.

580 {
582 if (it != end()) {
583 erase(it);
584 }
585 }
bool erase(iterator pos, T *out_value=nullptr)
Definition vector.h:564
iterator find(const T &value)
Definition vector.h:535