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

◆ assign() [2/2]

template<typename T>
template<typename InputIt, typename = fl::enable_if_t<!fl::is_integral<InputIt>::value>>
void fl::vector< T >::assign ( InputIt first,
InputIt last )
inline

Definition at line 638 of file vector.h.

638 {
639 clear();
640 for (auto it = first; it != last; ++it) {
641 push_back(*it);
642 }
643 }
void clear() FL_NOEXCEPT
Definition vector.h:634
void push_back(const T &value) FL_NOEXCEPT
Definition vector.h:624

Referenced by AutoResearchRemoteControl::registerFunctions(), and fl::LineSimplifierExact< NumberT >::safeCopy().

+ Here is the caller graph for this function: