CGAL 5.1 - Handles and Circulators
|
#include <Concepts/ConstRange.h>
A constant iterator range. Refer to the Range
concept for more details.
STL containers
Range
Types | |
typedef unspecified_type | const_iterator |
The constant iterator type. More... | |
typedef unspecified_type | size_type |
An unsigned integral type that can represent the size of a range. More... | |
Member functions | |
const_iterator | begin () const |
returns the const iterator pointing to the first element. More... | |
const_iterator | end () const |
returns the past-the-end const iterator. More... | |
size_type | size () const |
returns the size of the range. More... | |
bool | empty () const |
returns whether the range is empty. More... | |
typedef unspecified_type ConstRange::const_iterator |
The constant iterator type.
typedef unspecified_type ConstRange::size_type |
An unsigned integral type that can represent the size of a range.
const_iterator ConstRange::begin | ( | ) | const |
returns the const iterator pointing to the first element.
bool ConstRange::empty | ( | ) | const |
returns whether the range is empty.
const_iterator ConstRange::end | ( | ) | const |
returns the past-the-end const iterator.
size_type ConstRange::size | ( | ) | const |
returns the size of the range.