|
FastLED 3.9.15
|
#include <pair.h>
Inheritance diagram for fl::pair< T1, T2 >:Public Types | |
| using | first_type = T1 |
| using | second_type = T2 |
Public Member Functions | |
| pair ()=default | |
| pair (const pair &other) FL_NOEXCEPT=default | |
| template<typename U1, typename U2> | |
| pair (const pair< U1, U2 > &other) FL_NOEXCEPT | |
| FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_NULL_DEREFERENCE | pair (const T1 &k, const T2 &v) FL_NOEXCEPT |
| pair (pair &&other) FL_NOEXCEPT | |
| template<typename U1, typename U2> | |
| pair (pair< U1, U2 > &&other) FL_NOEXCEPT | |
| template<typename U1, typename U2> | |
| FL_DISABLE_WARNING_POP | pair (U1 &&u1, U2 &&u2) FL_NOEXCEPT |
| pair & | operator= (const pair &other)=default |
| pair & | operator= (pair &&other) FL_NOEXCEPT=default |
| void | swap (pair &other) FL_NOEXCEPT |
Public Attributes | |
| T1 | first = T1() |
| T2 | second = T2() |