Closed ericniebler closed 5 years ago
From join_view::iterator:
constexpr decltype(auto) operator*() const { return *inner_; }
That fails when R's inner iterator does not have a const-qualified operator*.
const
operator*
Per the resolution of #514 in P1878, this is no longer an issue. All readable types are required to also be readable when const.
readable
From join_view::iterator:
That fails when R's inner iterator does not have a
const
-qualifiedoperator*
.