LibreOffice Module onlineupdate (master) 1
|
IsSigned determines whether a type is a signed arithmetic type. More...
#include <TypeTraits.h>
IsSigned determines whether a type is a signed arithmetic type.
|char| is considered a signed type if it has the same representation as |signed char|.
mozilla::IsSigned<int>::value is true; mozilla::IsSigned<const unsigned int>::value is false; mozilla::IsSigned<unsigned char>::value is false; mozilla::IsSigned<float>::value is true.
Definition at line 463 of file TypeTraits.h.