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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Core Modules
dune-common
Commits
1b4b554a
Commit
1b4b554a
authored
15 years ago
by
Martin Nolte
Browse files
Options
Downloads
Patches
Plain Diff
implement comparison operators as required by TR1
[[Imported from SVN: r5652]]
parent
cb5ebde0
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
dune/common/array.hh
+32
-2
32 additions, 2 deletions
dune/common/array.hh
with
32 additions
and
2 deletions
dune/common/array.hh
+
32
−
2
View file @
1b4b554a
...
...
@@ -14,9 +14,10 @@
// Include system implementation of array class if present
#ifdef HAVE_ARRAY
#include
<array>
#endif
#ifdef HAVE_TR1_ARRAY
#elif defined HAVE_TR1_ARRAY
#include
<tr1/array>
#else
#include
<algorithm>
#endif
...
...
@@ -122,6 +123,35 @@ namespace Dune
protected
:
T
a
[(
N
>
0
)
?
N
:
1
];
};
// Comparison Operators (see [lib.container.requirements])
// -------------------------------------------------------
template
<
class
T
,
int
N
>
inline
bool
operator
<
(
const
array
<
T
,
N
>
&
a
,
const
array
<
T
,
N
>
&
b
)
{
return
std
::
lexicographical_compare
(
a
.
begin
(),
a
.
end
(),
b
.
begin
(),
b
.
end
()
);
}
template
<
class
T
,
int
N
>
inline
bool
operator
>
(
const
array
<
T
,
N
>
&
a
,
const
array
<
T
,
N
>
&
b
)
{
return
b
<
a
;
}
template
<
class
T
,
int
N
>
inline
bool
operator
<=
(
const
array
<
T
,
N
>
&
a
,
const
array
<
T
,
N
>
&
b
)
{
return
!
(
a
>
b
);
}
template
<
class
T
,
int
N
>
inline
bool
operator
>=
(
const
array
<
T
,
N
>
&
a
,
const
array
<
T
,
N
>
&
b
)
{
return
!
(
a
<
b
);
}
#endif
//! Output operator for array
template
<
class
T
,
int
N
>
...
...
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