class take_view : public view_interface<take_view<_Vp>>
{
private:
+ template<bool _Const>
+ using _CI = counted_iterator<
+ iterator_t<__detail::__maybe_const_t<_Const, _Vp>>>;
+
template<bool _Const>
struct _Sentinel
{
private:
using _Base = __detail::__maybe_const_t<_Const, _Vp>;
- using _CI = counted_iterator<iterator_t<_Base>>;
-
sentinel_t<_Base> _M_end = sentinel_t<_Base>();
public:
base() const
{ return _M_end; }
- friend constexpr bool operator==(const _CI& __y, const _Sentinel& __x)
+ friend constexpr bool
+ operator==(const _CI<_Const>& __y, const _Sentinel& __x)
+ { return __y.count() == 0 || __y.base() == __x._M_end; }
+
+ template<bool _OtherConst = !_Const,
+ typename _Base2 = __detail::__maybe_const_t<_OtherConst, _Vp>>
+ requires sentinel_for<sentinel_t<_Base>, iterator_t<_Base2>>
+ friend constexpr bool
+ operator==(const _CI<_OtherConst>& __y, const _Sentinel& __x)
{ return __y.count() == 0 || __y.base() == __x._M_end; }
friend _Sentinel<!_Const>;
operator==(const iterator_t<_Base>& __x, const _Sentinel& __y)
{ return __y._M_end == __x || !std::__invoke(*__y._M_pred, *__x); }
+ template<bool _OtherConst = !_Const,
+ typename _Base2 = __detail::__maybe_const_t<_OtherConst, _Vp>>
+ requires sentinel_for<sentinel_t<_Base>, iterator_t<_Base2>>
+ friend constexpr bool
+ operator==(const iterator_t<_Base2>& __x, const _Sentinel& __y)
+ { return __y._M_end == __x || !std::__invoke(*__y._M_pred, *__x); }
+
friend _Sentinel<!_Const>;
};
void
test01()
{
- // PR libstdc++/95322 and LWG 3488
+ // PR libstdc++/95322 and LWG 3448
int a[2]{1, 2};
test_forward_range<int> v{a};
auto view1 = v | std::views::take(2);
VERIFY( !eq );
}
+void
+test03()
+{
+ // LWG 3449, for take_view
+ int a[2]{1, 2};
+ test_forward_range<int> v{a};
+ auto view1 = v | std::views::transform(std::identity{});
+ auto view2 = view1 | std::views::take(2);
+ const bool eq = std::ranges::cbegin(view2) == std::ranges::end(view2);
+ VERIFY( !eq );
+}
+
+void
+test04()
+{
+ // LWG 3449, for take_while_view
+ int a[2]{1, 2};
+ test_forward_range<int> v{a};
+ auto view1 = v | std::views::transform(std::identity{});
+ auto view2 = view1 | std::views::take_while([] (int i) { return true; });
+ const bool eq = std::ranges::cbegin(view2) == std::ranges::end(view2);
+ VERIFY( !eq );
+}
+
int main()
{
test01();
test02();
+ test03();
+ test04();
}