.TH "std::weakly_incrementable" 3cxx "libstdc++" \" -*- nroff -*- .ad l .nh .SH NAME std::weakly_incrementable \- Requirements on types that can be incremented with ++\&. .SH SYNOPSIS .br .PP .PP \fC#include \fP .SH "Concept definition" .PP .PP .nf template concept std::weakly_incrementable = movable<_Iter> && requires(_Iter __i) { typename iter_difference_t<_Iter>; requires __detail::__is_signed_integer_like>; { ++__i } \-> same_as<_Iter&>; __i++; } .fi .SH "Detailed Description" .PP Requirements on types that can be incremented with ++\&. .SH "Author" .PP Generated automatically by Doxygen for libstdc++ from the source code\&.