|
FastLED 3.9.15
|
Definition at line 15 of file unordered_set.h.
#include <unordered_set.h>
Collaboration diagram for fl::unordered_set< Key >:Classes | |
| class | const_iterator |
| class | iterator |
Public Member Functions | |
| unordered_set ()=default | |
| ~unordered_set ()=default | |
| iterator | begin () |
| const_iterator | begin () const |
| fl::size | capacity () const |
| const_iterator | cbegin () const |
| const_iterator | cend () const |
| void | clear () |
| bool | contains (const Key &key) const |
| fl::size | count (const Key &key) const |
| template<typename... Args> | |
| bool | emplace (Args &&... args) |
| bool | empty () const |
| iterator | end () |
| const_iterator | end () const |
| bool | erase (const Key &key) |
| iterator | erase (const_iterator pos) |
| iterator | erase (iterator pos) |
| iterator | find (const Key &key) |
| const_iterator | find (const Key &key) const |
| bool | has (const Key &key) const |
| bool | insert (const Key &key) |
| bool | insert (Key &&key) |
| fl::size | size () const |
Private Attributes | |
| fl::unordered_map< Key, bool > | data |