Types const_range_type and range_type model the Container Range concept. The types differ only in that the bounds for a const_range_type are of type const_iterator, whereas the bounds for a range_type are of type iterator.
Member | Description |
---|---|
const_range_type range() const |
Returns: const_range_type object representing all keys in the table. |
range_type range() |
Returns: range_type object representing all keys in the table. |