|
tlx
|
#include <radix_heap.hpp>
Public Member Functions | |
| BitArrayRecursive () noexcept | |
| BitArrayRecursive (const BitArrayRecursive &) noexcept=default | |
| BitArrayRecursive (BitArrayRecursive &&) noexcept=default | |
| BitArrayRecursive & | operator= (const BitArrayRecursive &) noexcept=default |
| BitArrayRecursive & | operator= (BitArrayRecursive &&) noexcept=default |
| void | set_bit (const size_t i) |
| void | clear_bit (const size_t i) |
| bool | is_set (const size_t i) const |
| void | clear_all () |
| bool | empty () const |
| size_t | find_lsb () const |
Static Public Attributes | |
| static constexpr size_t | size |
Private Types | |
| using | uint_type = typename std::conditional< Size<=32, uint32_t, uint64_t >::type |
Private Attributes | |
| uint_type | flags_ |
Definition at line 168 of file radix_heap.hpp.
|
private |
Definition at line 171 of file radix_heap.hpp.
|
inlineexplicitnoexcept |
Definition at line 177 of file radix_heap.hpp.
|
defaultnoexcept |
|
defaultnoexcept |
|
inline |
Definition at line 198 of file radix_heap.hpp.
|
inline |
Definition at line 188 of file radix_heap.hpp.
|
inline |
Definition at line 202 of file radix_heap.hpp.
|
inline |
Definition at line 206 of file radix_heap.hpp.
|
inline |
Definition at line 193 of file radix_heap.hpp.
|
defaultnoexcept |
|
defaultnoexcept |
|
inline |
Definition at line 183 of file radix_heap.hpp.
|
private |
Definition at line 212 of file radix_heap.hpp.
|
staticconstexpr |
Definition at line 175 of file radix_heap.hpp.