Unigine::Set Class
Header: | #include <UnigineSet.h> |
A set container template.
Set Class
Members
Set()
Default constructor that produces an empty set.Set(std::initializer_list<Key> list)
Arguments
- std::initializer_list<Key> list
Set(Set<Key> && o)
Arguments
- Set<Key> && o
Set(const Set<Key> & o)
Arguments
- const Set<Key> & o
void append(const Key & key)
Appends a key.Arguments
- const Key & key - Key.
void append(const Set<Key> & s)
Appends a set.Arguments
- const Set<Key> & s - Set.
void append(Set<Key> && s)
Arguments
- Set<Key> && s
void append(Key && key)
Arguments
- Key && key
void insert(Key && key)
Arguments
- Key && key
void insert(const Key & key)
Arguments
- const Key & key
void insert(Set<Key> && o)
Arguments
- Set<Key> && o
void insert(const Set<Key> & o)
Arguments
- const Set<Key> & o
Set<Key> & operator=(Set<Key> && o)
Arguments
- Set<Key> && o
Set<Key> & operator=(const Set<Key> & o)
Arguments
- const Set<Key> & o
Last update: 2018-04-26
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)