15#include <seqan3/search/dream_index/interleaved_bloom_filter.hpp>
20template <
typename container_t>
25 using value_type = void;
26 using difference_type = ptrdiff_t;
28 using reference = void;
37 explicit constexpr emplace_iterator(container_t & cont, seqan3::bin_index
const idx) :
44 container->emplace(std::move(value), index);
64 container_t * container{};
65 seqan3::bin_index index{};
68template <
typename container_t>
Definition: emplace_iterator.hpp:22