Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94989201
aka_safe_enum.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 11, 23:40
Size
2 KB
Mime Type
text/x-c++
Expires
Fri, Dec 13, 23:40 (2 d)
Engine
blob
Format
Raw Data
Handle
22886972
Attached To
rAKA akantu
aka_safe_enum.hh
View Options
/**
* Copyright (©) 2013-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_AKA_SAFE_ENUM_HH_
#define AKANTU_AKA_SAFE_ENUM_HH_
namespace
akantu
{
/// Safe enumerated type
template
<
typename
def
,
typename
inner
=
typename
def
::
type
>
class
safe_enum
:
public
def
{
using
type
=
typename
def
::
type
;
public
:
constexpr
explicit
safe_enum
(
type
v
=
def
::
_end_
)
:
val
(
v
)
{}
constexpr
inner
underlying
()
const
{
return
val
;
}
constexpr
bool
operator
==
(
const
safe_enum
&
s
)
const
{
return
this
->
val
==
s
.
val
;
}
constexpr
bool
operator
!=
(
const
safe_enum
&
s
)
const
{
return
this
->
val
!=
s
.
val
;
}
constexpr
bool
operator
<
(
const
safe_enum
&
s
)
const
{
return
this
->
val
<
s
.
val
;
}
constexpr
bool
operator
<=
(
const
safe_enum
&
s
)
const
{
return
this
->
val
<=
s
.
val
;
}
constexpr
bool
operator
>
(
const
safe_enum
&
s
)
const
{
return
this
->
val
>
s
.
val
;
}
constexpr
bool
operator
>=
(
const
safe_enum
&
s
)
const
{
return
this
->
val
>=
s
.
val
;
}
constexpr
operator
inner
()
{
return
val
;
};
public
:
// Works only if enumerations are contiguous.
class
const_iterator
{
public
:
constexpr
explicit
const_iterator
(
type
v
)
:
it
(
v
)
{}
constexpr
const_iterator
&
operator
++
()
{
++
it
;
return
*
this
;
}
constexpr
safe_enum
operator
*
()
{
return
safe_enum
(
static_cast
<
type
>
(
it
));
}
constexpr
bool
operator
!=
(
const_iterator
const
&
it
)
{
return
it
.
it
!=
this
->
it
;
}
private
:
int
it
;
};
constexpr
auto
begin
()
const
{
return
const_iterator
(
def
::
_begin_
);
}
constexpr
auto
end
()
const
{
return
const_iterator
(
def
::
_end_
);
}
private
:
inner
val
;
};
}
// namespace akantu
#endif
/* AKANTU_AKA_SAFE_ENUM_HH_ */
Event Timeline
Log In to Comment