#include <cstdint>
#include <tudocomp/util.hpp>
Go to the source code of this file.
|
| | tdc |
| | Contains the text compression and encoding framework.
|
| |
|
| template<typename uint_t > |
| constexpr uint8_t | tdc::select1 (uint_t v, uint8_t k) |
| | Finds the position of the k-th 1-bit in the binary representation of the given value. More...
|
| |
| template<typename uint_t > |
| constexpr uint8_t | tdc::select1 (uint_t v, uint8_t l, uint8_t k) |
| | Finds the position of the k-th 1-bit in the binary representation of the given value. More...
|
| |
| template<typename uint_t > |
| constexpr uint8_t | tdc::select0 (uint_t v, uint8_t k) |
| | Finds the position of the k-th 0-bit in the binary representation of the given value. More...
|
| |
| template<typename uint_t > |
| constexpr uint8_t | tdc::select0 (uint_t v, uint8_t l, uint8_t k) |
| | Finds the position of the k-th 0-bit in the binary representation of the given value. More...
|
| |