1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
//===----------------------------------------------------------------------===//
//
// 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 TEST_SUPPORT_DEDUCTION_GUIDES_SFINAE_CHECKS_H
#define TEST_SUPPORT_DEDUCTION_GUIDES_SFINAE_CHECKS_H
#include <functional>
#include <initializer_list>
#include <iterator>
#include <memory>
#include <type_traits>
#include <utility>
#include "test_macros.h"
// `SFINAEs_away` template variable checks whether the template arguments for
// a given template class `Instantiated` can be deduced from the given
// constructor parameter types `CtrArgs` using CTAD.
template<template<typename ...> class Instantiated, class ...CtrArgs,
class = decltype(Instantiated(std::declval<CtrArgs>()...))>
std::false_type SFINAEs_away_impl(int);
template<template<typename ...> class Instantiated, class ...CtrArgs>
std::true_type SFINAEs_away_impl(...);
template<template<typename ...> class Instantiated, class ...CtrArgs>
constexpr bool SFINAEs_away =
decltype(SFINAEs_away_impl<Instantiated, CtrArgs...>(0))::value;
// For sequence containers the deduction guides should be SFINAE'd away when
// given:
// - "bad" input iterators (that is, a type not qualifying as an input
// iterator);
// - a bad allocator.
template<template<typename ...> class Container, typename InstantiatedContainer>
constexpr void SequenceContainerDeductionGuidesSfinaeAway() {
using Alloc = std::allocator<int>;
using Iter = int*;
struct BadAlloc {};
// Note: the only requirement in the Standard is that integral types cannot be
// considered input iterators; however, this doesn't work for sequence
// containers because they have constructors of the form `(size_type count,
// const value_type& value)`. These constructors would be used when passing
// two integral types and would deduce `value_type` to be an integral type.
#ifdef _LIBCPP_VERSION
using OutputIter = std::insert_iterator<InstantiatedContainer>;
#endif // _LIBCPP_VERSION
// (iter, iter)
//
// Cannot deduce from (BAD_iter, BAD_iter)
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter>);
// (iter, iter, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, alloc)
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter, Alloc>);
// Cannot deduce from (iter, iter, BAD_alloc)
static_assert(SFINAEs_away<Container, Iter, Iter, BadAlloc>);
// (alloc)
//
// Cannot deduce from (alloc)
static_assert(SFINAEs_away<Container, Alloc>);
}
// For associative containers the deduction guides should be SFINAE'd away when
// given:
// - "bad" input iterators (that is, a type not qualifying as an input
// iterator);
// - a bad allocator;
// - an allocator in place of a comparator.
template<template<typename ...> class Container, typename InstantiatedContainer>
constexpr void AssociativeContainerDeductionGuidesSfinaeAway() {
using ValueType = typename InstantiatedContainer::value_type;
using Comp = std::less<int>;
using Alloc = std::allocator<ValueType>;
using Iter = ValueType*;
using InitList = std::initializer_list<ValueType>;
struct BadAlloc {};
// The only requirement in the Standard is that integral types cannot be
// considered input iterators, beyond that it is unspecified.
using BadIter = int;
#ifdef _LIBCPP_VERSION
using OutputIter = std::insert_iterator<InstantiatedContainer>;
#endif // _LIBCPP_VERSION
using AllocAsComp = Alloc;
// (iter, iter)
//
// Cannot deduce from (BAD_iter, BAD_iter)
static_assert(SFINAEs_away<Container, BadIter, BadIter>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter>);
// (iter, iter, comp)
//
// Cannot deduce from (BAD_iter, BAD_iter, comp)
static_assert(SFINAEs_away<Container, BadIter, BadIter, Comp>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter, Comp>);
// (iter, iter, comp, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, comp, alloc)
static_assert(SFINAEs_away<Container, BadIter, BadIter, Comp, Alloc>);
LIBCPP_STATIC_ASSERT(
SFINAEs_away<Container, OutputIter, OutputIter, Comp, Alloc>);
// Cannot deduce from (iter, iter, ALLOC_as_comp, alloc)
static_assert(SFINAEs_away<Container, Iter, Iter, AllocAsComp, Alloc>);
// Cannot deduce from (iter, iter, comp, BAD_alloc)
static_assert(SFINAEs_away<Container, Iter, Iter, Comp, BadAlloc>);
// (iter, iter, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, alloc)
static_assert(SFINAEs_away<Container, BadIter, BadIter, Alloc>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter, Alloc>);
// Note: (iter, iter, BAD_alloc) is interpreted as (iter, iter, comp)
// instead and fails upon instantiation. There is no requirement to SFINAE
// away bad comparators.
// (init_list, comp, alloc)
//
// Cannot deduce from (init_list, ALLOC_as_comp, alloc)
static_assert(SFINAEs_away<Container, InitList, AllocAsComp, Alloc>);
// Cannot deduce from (init_list, comp, BAD_alloc)
static_assert(SFINAEs_away<Container, InitList, Comp, BadAlloc>);
// (init_list, alloc)
//
// Note: (init_list, BAD_alloc) is interpreted as (init_list, comp) instead
// and fails upon instantiation. There is no requirement to SFINAE away bad
// comparators.
}
// For unordered containers the deduction guides should be SFINAE'd away when
// given:
// - "bad" input iterators (that is, a type not qualifying as an input
// iterator);
// - a bad allocator;
// - a bad hash functor (an integral type in place of a hash);
// - an allocator in place of a hash functor;
// - an allocator in place of a predicate.
template<template<typename ...> class Container, typename InstantiatedContainer>
constexpr void UnorderedContainerDeductionGuidesSfinaeAway() {
using ValueType = typename InstantiatedContainer::value_type;
using Pred = std::equal_to<int>;
using Hash = std::hash<int>;
using Alloc = std::allocator<ValueType>;
using Iter = ValueType*;
using InitList = std::initializer_list<ValueType>;
using BadHash = int;
struct BadAlloc {};
// The only requirement in the Standard is that integral types cannot be
// considered input iterators, beyond that it is unspecified.
using BadIter = int;
#ifdef _LIBCPP_VERSION
using OutputIter = std::insert_iterator<InstantiatedContainer>;
#endif // _LIBCPP_VERSION
using AllocAsHash = Alloc;
using AllocAsPred = Alloc;
// (iter, iter)
//
// Cannot deduce from (BAD_iter, BAD_iter)
static_assert(SFINAEs_away<Container, BadIter, BadIter>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter>);
// (iter, iter, buckets)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets)
static_assert(SFINAEs_away<Container, BadIter, BadIter, size_t>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter, size_t>);
// (iter, iter, buckets, hash)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets, hash)
static_assert(SFINAEs_away<Container, BadIter, BadIter, size_t, Hash>);
LIBCPP_STATIC_ASSERT(
SFINAEs_away<Container, OutputIter, OutputIter, size_t, Hash>);
// Cannot deduce from (iter, iter, buckets, BAD_hash)
static_assert(SFINAEs_away<Container, Iter, Iter, size_t, BadHash>);
// Note: (iter, iter, buckets, ALLOC_as_hash) is allowed -- it just calls
// (iter, iter, buckets, alloc)
// (iter, iter, buckets, hash, pred)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets, hash, pred)
static_assert(SFINAEs_away<Container, BadIter, BadIter, size_t, Hash, Pred>);
LIBCPP_STATIC_ASSERT(
SFINAEs_away<Container, OutputIter, OutputIter, size_t, Hash, Pred>);
// Cannot deduce from (iter, iter, buckets, BAD_hash, pred)
static_assert(SFINAEs_away<Container, Iter, Iter, size_t, BadHash, Pred>);
// Cannot deduce from (iter, iter, buckets, ALLOC_as_hash, pred)
static_assert(SFINAEs_away<Container, Iter, Iter, size_t, AllocAsHash, Pred>);
// Note: (iter, iter, buckets, hash, ALLOC_as_pred) is allowed -- it just
// calls (iter, iter, buckets, hash, alloc)
// (iter, iter, buckets, hash, pred, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets, hash, pred, alloc)
static_assert(
SFINAEs_away<Container, BadIter, BadIter, size_t, Hash, Pred, Alloc>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter,
size_t, Hash, Pred, Alloc>);
// Cannot deduce from (iter, iter, buckets, BAD_hash, pred, alloc)
static_assert(
SFINAEs_away<Container, Iter, Iter, size_t, BadHash, Pred, Alloc>);
// Cannot deduce from (iter, iter, buckets, ALLOC_as_hash, pred, alloc)
static_assert(
SFINAEs_away<Container, Iter, Iter, size_t, AllocAsHash, Pred, Alloc>);
// Cannot deduce from (iter, iter, buckets, hash, ALLOC_as_pred, alloc)
static_assert(
SFINAEs_away<Container, Iter, Iter, size_t, Hash, AllocAsPred, Alloc>);
// Cannot deduce from (iter, iter, buckets, hash, pred, BAD_alloc)
static_assert(
SFINAEs_away<Container, Iter, Iter, size_t, Hash, Pred, BadAlloc>);
// (iter, iter, buckets, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets, alloc)
static_assert(SFINAEs_away<Container, BadIter, BadIter, size_t, Alloc>);
LIBCPP_STATIC_ASSERT(
SFINAEs_away<Container, OutputIter, OutputIter, size_t, Alloc>);
// Note: (iter, iter, buckets, BAD_alloc) is interpreted as (iter, iter,
// buckets, hash), which is valid because the only requirement for the hash
// parameter is that it's not integral.
// (iter, iter, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, alloc)
static_assert(SFINAEs_away<Container, BadIter, BadIter, Alloc>);
LIBCPP_STATIC_ASSERT(SFINAEs_away<Container, OutputIter, OutputIter, Alloc>);
// Cannot deduce from (iter, iter, BAD_alloc)
static_assert(SFINAEs_away<Container, Iter, Iter, BadAlloc>);
// (iter, iter, buckets, hash, alloc)
//
// Cannot deduce from (BAD_iter, BAD_iter, buckets, hash, alloc)
static_assert(SFINAEs_away<Container, BadIter, BadIter, size_t, Hash, Alloc>);
LIBCPP_STATIC_ASSERT(
SFINAEs_away<Container, OutputIter, OutputIter, size_t, Hash, Alloc>);
// Cannot deduce from (iter, iter, buckets, BAD_hash, alloc)
static_assert(SFINAEs_away<Container, Iter, Iter, size_t, BadHash, Alloc>);
// Cannot deduce from (iter, iter, buckets, ALLOC_as_hash, alloc)
static_assert(
SFINAEs_away<Container, Iter, Iter, size_t, AllocAsHash, Alloc>);
// Note: (iter, iter, buckets, hash, BAD_alloc) is interpreted as (iter, iter,
// buckets, hash, pred), which is valid because there are no requirements for
// the predicate.
// (init_list, buckets, hash)
//
// Cannot deduce from (init_list, buckets, BAD_hash)
static_assert(SFINAEs_away<Container, InitList, size_t, BadHash>);
// Note: (init_list, buckets, ALLOC_as_hash) is interpreted as (init_list,
// buckets, alloc), which is valid.
// (init_list, buckets, hash, pred)
//
// Cannot deduce from (init_list, buckets, BAD_hash, pred)
static_assert(SFINAEs_away<Container, InitList, size_t, BadHash, Pred>);
// Cannot deduce from (init_list, buckets, ALLOC_as_hash, pred)
static_assert(SFINAEs_away<Container, InitList, size_t, AllocAsHash, Pred>);
// Note: (init_list, buckets, hash, ALLOC_as_pred) is interpreted as
// (init_list, buckets, hash, alloc), which is valid.
// (init_list, buckets, hash, pred, alloc)
//
// Cannot deduce from (init_list, buckets, BAD_hash, pred, alloc)
static_assert(
SFINAEs_away<Container, InitList, size_t, BadHash, Pred, Alloc>);
// Cannot deduce from (init_list, buckets, ALLOC_as_hash, pred, alloc)
static_assert(
SFINAEs_away<Container, InitList, size_t, AllocAsHash, Pred, Alloc>);
// Cannot deduce from (init_list, buckets, hash, ALLOC_as_pred, alloc)
static_assert(
SFINAEs_away<Container, InitList, size_t, Hash, AllocAsPred, Alloc>);
// Cannot deduce from (init_list, buckets, hash, pred, BAD_alloc)
static_assert(
SFINAEs_away<Container, InitList, size_t, Hash, Pred, BadAlloc>);
// (init_list, buckets, alloc)
//
// Note: (init_list, buckets, BAD_alloc) is interpreted as (init_list,
// buckets, hash), which is valid because the only requirement for the hash
// parameter is that it's not integral.
// (init_list, buckets, hash, alloc)
//
// Cannot deduce from (init_list, buckets, BAD_hash, alloc)
static_assert(SFINAEs_away<Container, InitList, size_t, BadHash, Alloc>);
// Cannot deduce from (init_list, buckets, ALLOC_as_hash, alloc)
static_assert(SFINAEs_away<Container, InitList, size_t, AllocAsHash, Alloc>);
// (init_list, alloc)
//
// Cannot deduce from (init_list, BAD_alloc)
static_assert(SFINAEs_away<Container, InitList, BadAlloc>);
}
#endif // TEST_SUPPORT_DEDUCTION_GUIDES_SFINAE_CHECKS_H
|