FastLED 3.9.15
|
#include <vector.h>
Public Types | |
using | const_iterator |
using | iterator = typename FixedVector<T, INLINED_SIZE>::iterator |
Public Member Functions | |
InlinedVector ()=default | |
InlinedVector (const InlinedVector &other) | |
InlinedVector (fl::initializer_list< T > init) | |
InlinedVector (fl::size size) | |
InlinedVector (InlinedVector &&other) | |
void | assign (fl::size new_cap, const T &value) |
template<typename InputIt, typename = fl::enable_if_t<!fl::is_integral<InputIt>::value>> | |
void | assign (InputIt begin, InputIt end) |
T & | back () |
const T & | back () const |
iterator | begin () |
const_iterator | begin () const |
void | clear () |
T * | data () |
const T * | data () const |
bool | empty () const |
iterator | end () |
const_iterator | end () const |
void | erase (iterator pos) |
template<typename Predicate> | |
iterator | find_if (Predicate pred) |
T & | front () |
const T & | front () const |
bool | full () const |
bool | insert (iterator pos, const T &value) |
bool | insert (iterator pos, T &&value) |
InlinedVector & | operator= (const InlinedVector &other) |
InlinedVector & | operator= (InlinedVector &&other) |
T & | operator[] (fl::size idx) |
const T & | operator[] (fl::size idx) const |
void | pop_back () |
void | push_back (const T &value) |
void | push_back (T &&value) |
void | reserve (fl::size size) |
void | resize (fl::size size) |
fl::size | size () const |
void | swap (InlinedVector &other) |
Private Attributes | |
FixedVector< T, INLINED_SIZE > | mFixed |
HeapVector< T > | mHeap |
bool | mUsingHeap = false |