#include <Buffer.hpp>
Public Member Functions | |
| Basic_Character_Iterator (Ch *x, Abstract_Buffer< Ch > &y, unsigned int z) | |
| Ch | operator * () |
| Indirection. | |
| Ch * | get () const |
| Retrieval. | |
| Basic_Character_Iterator & | operator++ () |
| Basic_Character_Iterator | operator++ (int) |
| Basic_Character_Iterator & | operator-- () |
| Basic_Character_Iterator | operator-- (int) |
Representation of an Iterator
| IO::Basic_Character_Iterator< Ch >::Basic_Character_Iterator | ( | Ch * | x, | |
| Abstract_Buffer< Ch > & | y, | |||
| unsigned int | z | |||
| ) | [inline] |
| Ch IO::Basic_Character_Iterator< Ch >::operator * | ( | ) | [inline] |
Indirection.
| Ch* IO::Basic_Character_Iterator< Ch >::get | ( | ) | const [inline] |
Retrieval.
| Basic_Character_Iterator& IO::Basic_Character_Iterator< Ch >::operator++ | ( | ) | [inline] |
Checked prefix increment operator.
Known Defect: Increment operator is not bounds-checked.
| Basic_Character_Iterator IO::Basic_Character_Iterator< Ch >::operator++ | ( | int | ) | [inline] |
Checked postfix increment operator.
Known Defect: Increment operator is not bounds-checked.
| Basic_Character_Iterator& IO::Basic_Character_Iterator< Ch >::operator-- | ( | ) | [inline] |
Checked prefix decrement operator.
Known Defect: Increment operator is not bounds-checked.
| Basic_Character_Iterator IO::Basic_Character_Iterator< Ch >::operator-- | ( | int | ) | [inline] |
Checked postfix decrement operator.
Known Defect: Increment operator is not bounds-checked.
1.5.4