#ifndef THETA_INTERSECTION_IMPL_HPP_
#define THETA_INTERSECTION_IMPL_HPP_
namespace datasketches {
template<typename A>
theta_intersection_alloc<A>::theta_intersection_alloc(uint64_t seed, const A& allocator):
state_(seed, nop_policy(), allocator)
{}
template<typename A>
template<typename FwdSketch>
void theta_intersection_alloc<A>::update(FwdSketch&& sketch) {
state_.update(std::forward<FwdSketch>(sketch));
}
template<typename A>
auto theta_intersection_alloc<A>::get_result(bool ordered) const -> CompactSketch {
return state_.get_result(ordered);
}
template<typename A>
bool theta_intersection_alloc<A>::has_result() const {
return state_.has_result();
}
}
# endif