| 220 | }; |
| 221 | |
| 222 | inline void ALWAYS_INLINE BloomFilter::Insert(const uint32_t hash) noexcept { |
| 223 | block_bloom_filter_.Insert(hash); |
| 224 | } |
| 225 | |
| 226 | inline bool ALWAYS_INLINE BloomFilter::Find(const uint32_t hash) const noexcept { |
| 227 | return block_bloom_filter_.Find(hash); |
no outgoing calls