Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
This structure defines some basic traits for the ordinal field type. More...
#include <Teuchos_OrdinalTraits.hpp>
Static Public Member Functions | |
static T | zero () |
Returns representation of zero for this ordinal type. More... | |
static T | one () |
Returns representation of one for this ordinal type. More... | |
static T | max () |
Returns a value designating the maximum value accessible by code using OrdinalTraits. More... | |
static T | invalid () |
Returns a value designating an invalid number. For signed types, this is typically negative one; for unsigned types, it is typically the largest value. More... | |
static std::string | name () |
Returns name of this ordinal type. More... | |
Static Public Attributes | |
static const bool | hasMachineParameters = false |
Allows testing to see if ordinal traits machine parameters are defined. More... | |
This structure defines some basic traits for the ordinal field type.
Ordinal traits are an essential part of templated codes. This structure offers the basic traits of the templated ordinal type, like defining zero and one.
For the general type, or default implementation, an aborting function is defined which should restrict implementations from using ordinal traits other than the defined specializations.
int
and long
int
. Definition at line 81 of file Teuchos_OrdinalTraits.hpp.
|
inlinestatic |
Returns representation of zero for this ordinal type.
Definition at line 87 of file Teuchos_OrdinalTraits.hpp.
|
inlinestatic |
Returns representation of one for this ordinal type.
Definition at line 90 of file Teuchos_OrdinalTraits.hpp.
|
inlinestatic |
Returns a value designating the maximum value accessible by code using OrdinalTraits.
For a signed ordinal, this will typically be the maximum positive value. However, for an unsigned ordinal, this will typically be one less than the maximum value, because the maximum value will typically be reserved for designating an invalid value.
Definition at line 96 of file Teuchos_OrdinalTraits.hpp.
|
inlinestatic |
Returns a value designating an invalid number. For signed types, this is typically negative one; for unsigned types, it is typically the largest value.
Definition at line 99 of file Teuchos_OrdinalTraits.hpp.
|
inlinestatic |
Returns name of this ordinal type.
Definition at line 102 of file Teuchos_OrdinalTraits.hpp.
|
static |
Allows testing to see if ordinal traits machine parameters are defined.
Definition at line 84 of file Teuchos_OrdinalTraits.hpp.