qxLib
|
Constexpr sequence. use unique tag for different instances. More...
#include <constexpr_sequence.h>
Static Public Member Functions | |
template<size_t nIndex = checker_wrapper<0> {}.index(), T _value = element<nIndex> {}.value()> | |
static constexpr T | value () noexcept |
Get current sequence value. More... | |
template<size_t nIndex = checker_wrapper<0> {}.index(), T _value = element<nIndex> {}.value(), bool bStub = element_flag<nIndex> {}.test_and_set()> | |
static constexpr T | next () noexcept |
Change value by Func and return new value ądetails As function works through generating new template instance each time, return value will be the same for one code line. That means in loops you will get same value each time. Use macros like BOOST_PP_REPEAT to simplify the code. More... | |
Constexpr sequence. use unique tag for different instances.
Modified version of Anthony Williams constexpr counter https://stackoverflow.com/a/58200261/8021662
tag_t | - tag for unique instances |
T | - value type |
Start | - start value |
Func | - function that modifies value |
Definition at line 42 of file constexpr_sequence.h.
|
inlinestaticconstexprnoexcept |
Change value by Func and return new value ądetails As function works through generating new template instance each time, return value will be the same for one code line. That means in loops you will get same value each time. Use macros like BOOST_PP_REPEAT to simplify the code.
nIndex | - current sequence index |
_value | - current sequence value |
bStub | - stub parameter |
- | next sequence value |
Definition at line 125 of file constexpr_sequence.h.
|
inlinestaticconstexprnoexcept |
Get current sequence value.
As function works through generating new template instance each time, return value will be the same for each code line. That means in loops you will get same value each time. Use macros like BOOST_PP_REPEAT to simplify the code
nIndex | - current sequence index |
_value | - current sequence value |
- | current sequence value |
Definition at line 105 of file constexpr_sequence.h.