|
FastLED 3.9.15
|
Definition at line 133 of file allocator.h.
#include <allocator.h>
Inheritance diagram for fl::allocator< T >:Classes | |
| struct | rebind |
Public Types | |
| using | const_pointer = const T* |
| using | const_reference = const T& |
| using | difference_type = fl::ptrdiff_t |
| using | pointer = T* |
| using | reference = T& |
| using | size_type = fl::size |
| using | value_type = T |
Public Member Functions | |
| allocator () FL_NOEXCEPT | |
| template<typename U> | |
| allocator (const allocator< U > &) FL_NOEXCEPT | |
| ~allocator () FL_NOEXCEPT | |
| T * | allocate (fl::size n) FL_NOEXCEPT |
| allocation_result< pointer, size_type > | allocate_at_least (fl::size n) FL_NOEXCEPT |
| template<typename U, typename... Args> | |
| void | construct (U *p, Args &&... args) FL_NOEXCEPT |
| void | deallocate (T *p, fl::size n) FL_NOEXCEPT |
| template<typename U> | |
| void | destroy (U *p) FL_NOEXCEPT |
| pointer | reallocate (pointer ptr, fl::size old_count, fl::size new_count) FL_NOEXCEPT |
Private Member Functions | |
| pointer | reallocate_impl (pointer ptr, fl::size old_count, fl::size new_count, fl::false_type) FL_NOEXCEPT |
| pointer | reallocate_impl (pointer ptr, fl::size old_count, fl::size new_count, fl::true_type) FL_NOEXCEPT |