Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
Convert from long
to unsigned int
.
More...
#include <Teuchos_as.hpp>
Static Public Member Functions | |
static unsigned int | convert (const long t) |
Convert the given long to an unsigned int . More... | |
static unsigned int | safeConvert (const long t) |
Convert from long to unsigned int , checking for underflow or overflow first. More... | |
Convert from long
to unsigned int
.
Definition at line 2069 of file Teuchos_as.hpp.
|
inlinestatic |
Convert the given long
to an unsigned int
.
long
integer values may overflow unsigned int
, depending on your platform. You should use safeConvert() if you aren't sure that the given long
value fits in an unsigned int
. Definition at line 2077 of file Teuchos_as.hpp.
|
inlinestatic |
Convert from long
to unsigned int
, checking for underflow or overflow first.
Definition at line 2084 of file Teuchos_as.hpp.