Lines Matching refs:StructWithGlobalFunctions
16 struct StructWithGlobalFunctions {}; struct
20 ConvertibleToCmpType strong_order(const ns::StructWithGlobalFunctions&, const ns::StructWithGlobalF…
21 ConvertibleToCmpType weak_order(const ns::StructWithGlobalFunctions&, const ns::StructWithGlobalFun…
22 ConvertibleToCmpType partial_order(const ns::StructWithGlobalFunctions&, const ns::StructWithGlobal…
24 int&& iter_move(const ns::StructWithGlobalFunctions&);
25 void iter_swap(const ns::StructWithGlobalFunctions&, const ns::StructWithGlobalFunctions&);
27 int* begin(const ns::StructWithGlobalFunctions&);
28 int* end(const ns::StructWithGlobalFunctions&);
29 int* rbegin(const ns::StructWithGlobalFunctions&);
30 int* rend(const ns::StructWithGlobalFunctions&);
31 unsigned int size(const ns::StructWithGlobalFunctions&);
65 …is_invocable_v<decltype(std::strong_order), ns::StructWithGlobalFunctions&, ns::StructWithGlobalFu…
67 …::is_invocable_v<decltype(std::weak_order), ns::StructWithGlobalFunctions&, ns::StructWithGlobalFu…
69 …s_invocable_v<decltype(std::partial_order), ns::StructWithGlobalFunctions&, ns::StructWithGlobalFu…
77 static_assert(!std::is_invocable_v<decltype(std::ranges::iter_move), ns::StructWithGlobalFunctions&…
79 ns::StructWithGlobalFunctions&,
80 ns::StructWithGlobalFunctions&>);
94 static_assert(!std::is_invocable_v<decltype(std::ranges::begin), ns::StructWithGlobalFunctions&>);
95 static_assert(!std::is_invocable_v<decltype(std::ranges::cbegin), ns::StructWithGlobalFunctions&>);
96 static_assert(!std::is_invocable_v<decltype(std::ranges::end), ns::StructWithGlobalFunctions&>);
97 static_assert(!std::is_invocable_v<decltype(std::ranges::cend), ns::StructWithGlobalFunctions&>);
98 static_assert(!std::is_invocable_v<decltype(std::ranges::rbegin), ns::StructWithGlobalFunctions&>);
99 static_assert(!std::is_invocable_v<decltype(std::ranges::crbegin), ns::StructWithGlobalFunctions&>);
100 static_assert(!std::is_invocable_v<decltype(std::ranges::rend), ns::StructWithGlobalFunctions&>);
101 static_assert(!std::is_invocable_v<decltype(std::ranges::crend), ns::StructWithGlobalFunctions&>);
102 static_assert(!std::is_invocable_v<decltype(std::ranges::size), ns::StructWithGlobalFunctions&>);