| 44 | //! Get the amount of values that are inserted |
| 45 | inline const uint64_t& Size() const { return index; } |
| 46 | inline uint64_t Key(const uint64_t& value) const { return value & LEAST_SIGNIFICANT_BIT_MASK; } |
| 47 | |
| 48 | private: |
| 49 | uint64_t buffer[RING_SIZE] = {}; //! Stores the corresponding values |
no outgoing calls
no test coverage detected