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 183 of file radix_heap.hpp.
|
private |
Definition at line 186 of file radix_heap.hpp.
|
inlineexplicitnoexcept |
Definition at line 192 of file radix_heap.hpp.
|
defaultnoexcept |
|
defaultnoexcept |
|
inline |
Definition at line 213 of file radix_heap.hpp.
|
inline |
Definition at line 203 of file radix_heap.hpp.
|
inline |
Definition at line 217 of file radix_heap.hpp.
|
inline |
Definition at line 221 of file radix_heap.hpp.
|
inline |
Definition at line 208 of file radix_heap.hpp.
|
defaultnoexcept |
|
defaultnoexcept |
|
inline |
Definition at line 198 of file radix_heap.hpp.
|
private |
Definition at line 227 of file radix_heap.hpp.
|
staticconstexpr |
Definition at line 190 of file radix_heap.hpp.