libboxes
boxes is a set of specialised containers built on top of STL
boxes.hpp
1
39#ifndef __BOXES_BOXES_HPP__
40#define __BOXES_BOXES_HPP__
41
42#include "bloom_filter.hpp"
43#include "cache.hpp"
44#include "hashes.hpp"
45#include "linked_vector.hpp"
46#include "ring_buffer.hpp"
47
48#endif // __BOXES_BOXES_HPP__
Implements a generic bloom filter. The bloom filter allows for customisation of used hash functions a...
Implements generic cache with pluggable eviction policies.
Contains wrappers for various hash functions that can be used in Bloom filters.
Implements a vector-like container that uses a linked list of fixed-size chunks to store its elements...
Implements a fixed-size double-ended queue.