logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

std::weakly_incrementable - Requirements on types that can be incremented with ++.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libstdc++                    std::weakly_incrementable(3cxx)

Concept Definition

       template<typename _Iter>
       concept std::weakly_incrementable =  movable<_Iter>
             && requires(_Iter __i)
             {
               typename iter_difference_t<_Iter>;
               requires __detail::__is_signed_integer_like<iter_difference_t<_Iter>>;
               { ++__i } -> same_as<_Iter&>;
               __i++;
             }

Detailed Description

       Requirements on types that can be incremented with ++.

Name

       std::weakly_incrementable - Requirements on types that can be incremented with ++.

Synopsis

       #include <iterator>

See Also