STL-compatible fixed sequence container traits.
More...
#include <entt.hpp>
|
static bool | resize (const Container &, typename Container::size_type) |
| Does nothing. More...
|
|
static bool | clear (const Container &) |
| Does nothing. More...
|
|
static std::pair< typename Container::iterator, bool > | insert (const Container &, typename Container::const_iterator, const typename Container::value_type &) |
| Does nothing. More...
|
|
static std::pair< typename Container::iterator, bool > | erase (const Container &, typename Container::const_iterator) |
| Does nothing. More...
|
|
template<typename Container>
struct entt::fixed_sequence_container< Container >
STL-compatible fixed sequence container traits.
- Template Parameters
-
Container | The type of the container. |
◆ clear()
template<typename Container >
Does nothing.
- Returns
- False to indicate failure in all cases.
◆ erase()
template<typename Container >
static std::pair<typename Container::iterator, bool> entt::fixed_sequence_container< Container >::erase |
( |
const Container & |
, |
|
|
typename Container::const_iterator |
|
|
) |
| |
|
inlinestatic |
Does nothing.
- Returns
- A pair consisting of an invalid iterator and a false value to indicate failure in all cases.
◆ insert()
template<typename Container >
static std::pair<typename Container::iterator, bool> entt::fixed_sequence_container< Container >::insert |
( |
const Container & |
, |
|
|
typename Container::const_iterator |
, |
|
|
const typename Container::value_type & |
|
|
) |
| |
|
inlinestatic |
Does nothing.
- Returns
- A pair consisting of an invalid iterator and a false value to indicate failure in all cases.
◆ resize()
template<typename Container >
Does nothing.
- Returns
- False to indicate failure in all cases.
The documentation for this struct was generated from the following file: