Searched refs:is_array_v (Results 1 – 16 of 16) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_array.h | 30 inline constexpr bool is_array_v = __is_array(_Tp); variable 44 inline constexpr bool is_array_v = is_array<_Tp>::value;
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | construct_at.h | 98 template <class _Tp, enable_if_t<!is_array_v<_Tp>, int> = 0> 104 template <class _Tp, enable_if_t<is_array_v<_Tp>, int> = 0>
|
H A D | uninitialized_algorithms.h | 377 if constexpr (is_array_v<_ValueType>) { in __allocator_destroy_multidimensional() 408 if constexpr (is_array_v<_Tp>) { in __allocator_construct_at_multidimensional() 444 if constexpr (is_array_v<_Tp>) { in __allocator_construct_at_multidimensional() 445 static_assert(is_array_v<_Arg>, in __allocator_construct_at_multidimensional()
|
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/ |
H A D | default_accessor.h | 41 …static_assert(!is_array_v<_ElementType>, "default_accessor: template argument may not be an array …
|
H A D | mdspan.h | 70 …static_assert(!is_array_v<_ElementType>, "mdspan: ElementType template parameter may not be an arr… 286 requires(is_array_v<_CArray> && (rank_v<_CArray> == 1))
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | readable_traits.h | 51 requires is_array_v<_Ip>
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_arg_store.h | 112 requires(is_array_v<_Tp> && same_as<_Tp, typename _Context::char_type[extent_v<_Tp>]>) in requires() 191 if constexpr (is_array_v<_Dp>) in __create_format_arg()
|
/freebsd/contrib/llvm-project/libcxx/include/__expected/ |
H A D | unexpected.h | 53 !is_array_v<_Tp> && //
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | optional | 594 …static_assert(!is_array_v<value_type>, "instantiation of optional with an array type is ill-formed… 906 static_assert(!is_array_v<_Up>, "Result of f(value()) should not be an Array"); 918 static_assert(!is_array_v<_Up>, "Result of f(value()) should not be an Array"); 930 static_assert(!is_array_v<_Up>, "Result of f(std::move(value())) should not be an Array"); 942 static_assert(!is_array_v<_Up>, "Result of f(std::move(value())) should not be an Array");
|
H A D | array | 487 …static_assert(!is_array_v<_Tp>, "[array.creation]/1: to_array does not accept multidimensional arr… 495 …static_assert(!is_array_v<_Tp>, "[array.creation]/4: to_array does not accept multidimensional arr…
|
H A D | mdspan | 365 requires(is_array_v<CArray> && rank_v<CArray> == 1)
|
H A D | type_traits | 252 template <class T> inline constexpr bool is_array_v
|
H A D | span | 214 !is_array_v<remove_cvref_t<_Range>> && //
|
H A D | variant | 1175 …static_assert(__all<!is_array_v<_Types>...>::value, "variant can not have an array type as an alte…
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1615 SYMBOL(is_array_v, std::, <type_traits>)
|