//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef SUPPORT_INSERT_RANGE_SEQUENCE_CONTAINERS_H #define SUPPORT_INSERT_RANGE_SEQUENCE_CONTAINERS_H #include #include #include #include #include #include #include #include #include "../exception_safety_helpers.h" #include "../from_range_helpers.h" #include "../insert_range_helpers.h" #include "MoveOnly.h" #include "almost_satisfies_types.h" #include "count_new.h" #include "min_allocator.h" #include "test_allocator.h" #include "test_iterators.h" #include "test_macros.h" #include "type_algorithms.h" template concept HasInsertRange = requires (Container& c, Range&& range) { c.insert_range(c.end(), range); }; template