UtfString
Public Member Functions | List of all members
UtfString::Utf8String::const_iterator Class Reference

An iterator that iterates through the code points in a UTF-8 string, but allowing only access to constant code points. More...

#include <Utf8String.h>

Inherits iterator< std::random_access_iterator_tag, Utf8Char >.

Public Member Functions

 const_iterator (const std::string &basicString, const std::string::const_iterator &basicStringIterator)
 Constructs an iterator for Utf8String using the base class iterator. More...
 
 const_iterator (const Utf8String::iterator &otherIterator)
 Constructs an iterator for Utf8String using a non-constant iterator. More...
 
 const_iterator (const Utf8String::const_iterator &otherIterator)
 Constructs an iterator for Utf8String using another constant iterator. More...
 
 const_iterator (const Utf8String::const_reverse_iterator &reverseIterator)
 Constructs an constant iterator for Utf8String using a constant reverse iterator. More...
 
 ~const_iterator ()
 Cleans up before the iterator is destroyed.
 
const_iteratoroperator= (const const_iterator &otherIterator)
 Assigns the value of another iterator to this iterator. More...
 
bool operator== (const const_iterator &otherIterator) const
 Compares this iterator with another iterator and tests for equality. More...
 
bool operator!= (const const_iterator &otherIterator) const
 Compares this iterator with another iterator and tests for inequality. More...
 
bool operator< (const const_iterator &otherIterator)
 Compares this iterator to another iterator and tests whether this iterator comes before the other iterator in the string. More...
 
bool operator<= (const const_iterator &otherIterator)
 Compares this iterator to another iterator and tests whether this iterator comes before or is at the same position the other iterator in the string. More...
 
bool operator> (const const_iterator &otherIterator)
 Compares this iterator to another iterator and tests whether this iterator comes after the other iterator in the string. More...
 
bool operator>= (const const_iterator &otherIterator)
 Compares this iterator to another iterator and tests whether this iterator comes after or is at the same position the other iterator in the string. More...
 
const_iteratoroperator++ ()
 Increments this iterator to the next position in the Utf8String. More...
 
const_iterator operator++ (int)
 Increments this iterator to the next position in the Utf8String. More...
 
const_iteratoroperator+= (size_t offset)
 Increments this iterator by a specific offset. More...
 
const_iterator operator+ (size_t offset)
 Creates an iterator that has the position of this iterator incremented by a specific offset. More...
 
const_iteratoroperator-- ()
 Decrements this iterator to the previous position in the Utf8String. More...
 
const_iterator operator-- (int)
 Decrements this iterator to the previous position in the Utf8String. More...
 
const_iteratoroperator-= (size_t offset)
 Decrements this iterator by a specific offset. More...
 
const_iterator operator- (size_t offset)
 Creates an iterator that has the position of this iterator decremented by a specific offset. More...
 
const Utf8Char operator* ()
 Gets the character at the position of this iterator. More...
 
const Utf8Charoperator-> ()
 Gets a pointer to the character at the position of this iterator. More...
 

Detailed Description

An iterator that iterates through the code points in a UTF-8 string, but allowing only access to constant code points.

This iterator assumes that the UTF-8 string being iterated over is a valid UTF-8 string.

Constructor & Destructor Documentation

UtfString::Utf8String::const_iterator::const_iterator ( const std::string &  basicString,
const std::string::const_iterator &  basicStringIterator 
)

Constructs an iterator for Utf8String using the base class iterator.

This function assumes that basicStringIterator is a valid iterator

Parameters
[in]basicStringA reference to the string that basicStringIterator points to
[in]basicStringIteratorThe base class iterator to use in constructing this iterator
UtfString::Utf8String::const_iterator::const_iterator ( const Utf8String::iterator otherIterator)

Constructs an iterator for Utf8String using a non-constant iterator.

This iterator will take on the same characteristics and position as the other iterator

Parameters
[in]otherIteratorThe other iterator to use in constructing this iterator
UtfString::Utf8String::const_iterator::const_iterator ( const Utf8String::const_iterator otherIterator)

Constructs an iterator for Utf8String using another constant iterator.

This iterator will take on the same characteristics and position as the other iterator

Parameters
[in]otherIteratorThe other iterator to use in constructing this iterator
UtfString::Utf8String::const_iterator::const_iterator ( const Utf8String::const_reverse_iterator reverseIterator)

Constructs an constant iterator for Utf8String using a constant reverse iterator.

This constant iterator will take on the same position as the constant reverse iterator.

Parameters
[in]reverseIteratorThe constant reverse iterator to use in constructing this constant iterator

Member Function Documentation

bool UtfString::Utf8String::const_iterator::operator!= ( const const_iterator otherIterator) const

Compares this iterator with another iterator and tests for inequality.

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
false if otherIterator is pointing to the same position as this iterator, otherwise true
const Utf8Char UtfString::Utf8String::const_iterator::operator* ( )

Gets the character at the position of this iterator.

If this iterator is not pointing to a position in a Utf8String, the result will be undefined.

The reference returned by this function will be invalidated if the iterator is changed in any way. Changing the value of the returned object will not change the string.

Returns
A reference to the the character being pointed to by this iterator
const_iterator UtfString::Utf8String::const_iterator::operator+ ( size_t  offset)

Creates an iterator that has the position of this iterator incremented by a specific offset.

Note that since a UTF-8 string contains variable-width characters, we have to iterate over the code units. As a result, this operator has a performance of O(N). Hence, this operator should be used with care.

Parameters
[in]offsetThe offset to be used when incrementing this position of this iterator
Returns
An iterator that points to the offset position
const_iterator& UtfString::Utf8String::const_iterator::operator++ ( )

Increments this iterator to the next position in the Utf8String.

This is the prefix operator.

Returns
A reference to this object after the position has been incremented
const_iterator UtfString::Utf8String::const_iterator::operator++ ( int  )

Increments this iterator to the next position in the Utf8String.

This is a postfix operator.

Returns
A copy of this object before the position was incremented
const_iterator& UtfString::Utf8String::const_iterator::operator+= ( size_t  offset)

Increments this iterator by a specific offset.

Note that since a UTF-8 string contains variable-width characters, we have to iterate over the code units. As a result, this operator has a performance of O(N). Hence, this operator should be used with care.

Parameters
[in]offsetThe offset to use in incrementing this iterator
Returns
A reference to this iterator
const_iterator UtfString::Utf8String::const_iterator::operator- ( size_t  offset)

Creates an iterator that has the position of this iterator decremented by a specific offset.

Note that since a UTF-8 string contains variable-width characters, we have to iterate over the code units. As a result, this operator has a performance of O(N). Hence, this operator should be used with care.

Parameters
[in]offsetThe offset to use in decrementing the position of this iterator
Returns
An iterator that points to the offset position
const_iterator& UtfString::Utf8String::const_iterator::operator-- ( )

Decrements this iterator to the previous position in the Utf8String.

This is a prefix operator.

Returns
A reference to this object after the position has been decremented
const_iterator UtfString::Utf8String::const_iterator::operator-- ( int  )

Decrements this iterator to the previous position in the Utf8String.

This is a postfix operator.

Returns
A copy of this object before the position was decremented
const_iterator& UtfString::Utf8String::const_iterator::operator-= ( size_t  offset)

Decrements this iterator by a specific offset.

Note that since a UTF-8 string contains variable-width characters, we have to iterate over the code units. As a result, this operator has a performance of O(N). Hence, this operator should be used with care.

Parameters
[in]offsetThe offset to use in decrementing this iterator
Returns
A reference to this iterator
const Utf8Char* UtfString::Utf8String::const_iterator::operator-> ( )

Gets a pointer to the character at the position of this iterator.

If this iterator is not pointing to a position in a Utf8String, the result will be undefined.

The pointer returned by this function will be invalidated if the iterator is changed in any way.

Returns
A pointer to the character being pointed to by this iterator
bool UtfString::Utf8String::const_iterator::operator< ( const const_iterator otherIterator)

Compares this iterator to another iterator and tests whether this iterator comes before the other iterator in the string.

This operator has a performance of O(1).

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
true if this iterator comes before the other iterator in a string, otherwise false
bool UtfString::Utf8String::const_iterator::operator<= ( const const_iterator otherIterator)

Compares this iterator to another iterator and tests whether this iterator comes before or is at the same position the other iterator in the string.

This operator has a performance of O(1).

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
true if this iterator comes before or is at the same position the other iterator in a string, otherwise false
const_iterator& UtfString::Utf8String::const_iterator::operator= ( const const_iterator otherIterator)

Assigns the value of another iterator to this iterator.

This iterator will take on the same characteristics and position as the other iterator

Parameters
[in]otherIteratorThe other iterator to be assigned to this iterator
Returns
A reference to this object after the assignment has been completed
bool UtfString::Utf8String::const_iterator::operator== ( const const_iterator otherIterator) const

Compares this iterator with another iterator and tests for equality.

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
true if otherIterator is pointing to the same position as this iterator, otherwise false
bool UtfString::Utf8String::const_iterator::operator> ( const const_iterator otherIterator)

Compares this iterator to another iterator and tests whether this iterator comes after the other iterator in the string.

This operator has a performance of O(1).

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
true if this iterator comes after the other iterator in a string, otherwise false
bool UtfString::Utf8String::const_iterator::operator>= ( const const_iterator otherIterator)

Compares this iterator to another iterator and tests whether this iterator comes after or is at the same position the other iterator in the string.

This operator has a performance of O(1).

Parameters
[in]otherIteratorThe other iterator to be compared with this iterator
Returns
true if this iterator comes after or is at the same position the other iterator in a string, otherwise false

The documentation for this class was generated from the following file: