qxLib
|
Same as std::span, but may be used with containers with forward iterators. More...
#include <generic_span.h>
Classes | |
class | iterator |
Public Member Functions | |
template<class container_t > | |
generic_span (container_t &container) noexcept | |
generic_span object constructor More... | |
template<class container_t > | |
generic_span (container_t &container, function_type< reference(qualified_type< container_value< container_t >> &)> valueAdapter) noexcept | |
generic_span object constructor More... | |
template<class container_t > | |
generic_span & | operator= (container_t &container) noexcept |
operator= More... | |
bool | empty () const noexcept |
Check if span is empty. More... | |
iterator | begin () const noexcept |
Return iterator to beginning. More... | |
iterator | end () const noexcept |
Return iterator to end. More... | |
iterator | cbegin () const noexcept |
Return const iterator to beginning. More... | |
iterator | cend () const noexcept |
Return const iterator to end. More... | |
Same as std::span, but may be used with containers with forward iterators.
The class can be used to use any container to iterate over its elements Useful when used in virtual methods Does not own the container The container should not be changed until the end of the iteration May be much slower then std::span when the size of sbo is smaller then sizeof 2 iterators of this container (libcpp: 16, ligcxx: 16, MSVC: 56)
T | - container value type |
Definition at line 40 of file generic_span.h.
|
inlinenoexcept |
generic_span object constructor
container_t | - any container, which adapter satisfies forward iterator concept |
container | - container instance. container must not be edited until adapter death |
Definition at line 82 of file generic_span.inl.
|
inlinenoexcept |
generic_span object constructor
container_t | - any container, which adapter satisfies forward iterator concept |
container | - container instance. container must not be edited until adapter death |
valueAdapter | - function which transforms Container::value_type to T* |
Definition at line 103 of file generic_span.inl.
|
inlinenoexcept |
Return iterator to beginning.
- | iterator to beginning |
Definition at line 125 of file generic_span.inl.
|
inlinenoexcept |
Return const iterator to beginning.
- | const iterator to beginning |
Definition at line 137 of file generic_span.inl.
|
inlinenoexcept |
Return const iterator to end.
- | const iterator to end |
Definition at line 143 of file generic_span.inl.
|
inlinenoexcept |
Check if span is empty.
- | true if empty |
Definition at line 119 of file generic_span.inl.
|
inlinenoexcept |
Return iterator to end.
- | iterator to end |
Definition at line 131 of file generic_span.inl.
|
noexcept |
operator=
container_t | - any container, which adapter satisfies forward iterator concept |
container | - container instance. container must not be edited until adapter death |
- | this object reference |