다음을 통해 공유


set::const_reverse_iterator

A type that provides a bidirectional iterator that can read any const element in the set.

typedef std::reverse_iterator<const_iterator> const_reverse_iterator;

설명

A type const_reverse_iterator cannot modify the value of an element and is use to iterate through the set in reverse.

예제

See the example for rend for an example of how to declare and use the const_reverse_iterator.

요구 사항

헤더: <설정>

네임스페이스: std

참고 항목

참조

set 클래스

표준 템플릿 라이브러리