Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
5eb65c5e
Commit
5eb65c5e
authored
20 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
a few methods were missing from the Doxygen documentation
[[Imported from SVN: r1045]]
parent
2f70385b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
istl/basearray.hh
+9
-7
9 additions, 7 deletions
istl/basearray.hh
with
9 additions
and
7 deletions
istl/basearray.hh
+
9
−
7
View file @
5eb65c5e
...
...
@@ -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
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment