// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "multi_numeric_enum_search_context.h" #include "multi_enum_search_context.hpp" namespace search::attribute { template MultiNumericEnumSearchContext::MultiNumericEnumSearchContext(std::unique_ptr qTerm, const AttributeVector& toBeSearched, MultiValueMappingReadView mv_mapping_read_view, const EnumStoreT& enum_store) : MultiEnumSearchContext>, M>(NumericRangeMatcher(*qTerm), toBeSearched, mv_mapping_read_view, enum_store) { } }