Skip to content
Snippets Groups Projects
Commit 5eb65c5e authored by Oliver Sander's avatar Oliver Sander
Browse files

a few methods were missing from the Doxygen documentation

[[Imported from SVN: r1045]]
parent 2f70385b
No related branches found
No related tags found
No related merge requests found
......@@ -114,13 +114,13 @@ namespace Dune {
return (p+i)!=(it.p+it.i);
}
//! equality
//! equality with a const iterator
bool operator== (const const_iterator& it) const
{
return (p+i)==(it.p+it.i);
}
//! inequality
//! inequality with a const iterator
bool operator!= (const const_iterator& it) const
{
return (p+i)!=(it.p+it.i);
......@@ -138,7 +138,7 @@ namespace Dune {
return p+i;
}
// return index corresponding to pointer
//! return index corresponding to pointer
int index () const
{
return i;
......@@ -251,7 +251,7 @@ namespace Dune {
return p+i;
}
// return index corresponding to pointer
//! return index corresponding to pointer
int index () const
{
return i;
......@@ -696,13 +696,13 @@ namespace Dune {
return p+i;
}
// return index corresponding to pointer
//! return index corresponding to pointer
int index () const
{
return j[i];
}
// return index corresponding to pointer
//! Set index corresponding to pointer
void setindex (int k)
{
return j[i] = k;
......@@ -769,9 +769,11 @@ namespace Dune {
i = 0;
}
//! \todo please doc me!
const_iterator (const B* _p, const int* _j, int _i) : p(_p), j(_j), i(_i)
{ }
//! Copy constructor from a non-const iterator
const_iterator (const iterator& it) : p(it.p), j(it.j), i(it.i)
{ }
......@@ -829,7 +831,7 @@ namespace Dune {
return p+i;
}
// return index corresponding to pointer
//! return index corresponding to pointer
int index () const
{
return j[i];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment