HDK
|
#include <UN_Types.h>
Public Member Functions | |
UN_DataIndex (ValueType value=INVALID_NUMBER) | |
UN_DataIndex (UN_DataSize size) | |
For past-end array index. More... | |
UN_DataIndex (exint value) | |
void | clear () |
Resets the index to an invalid value. More... | |
operator exint () const | |
Implicit cast to exint for indexing into arrays (eg, UT_Array). More... | |
Public Member Functions inherited from UN_DataNumber | |
UN_DataNumber (ValueType value=INVALID_NUMBER) | |
void | setValue (ValueType value) |
Sets the numerical value of this number. More... | |
ValueType | value () const |
Returns the numerical value of this number. More... | |
operator ValueType () const | |
exint | exintValue () const |
Returns an exint value of this number. More... | |
bool | isValid () const |
Returns true if this data number is valid; false otherwise. More... | |
operator bool () const | |
Returns true if this data number is valid; false otherwise. More... | |
bool | operator== (const UN_DataNumber &other) const |
Comparison operators. More... | |
bool | operator!= (const UN_DataNumber &other) const |
Comparison operators. More... | |
bool | operator< (const UN_DataNumber &other) const |
Comparison operators. More... | |
bool | operator<= (const UN_DataNumber &other) const |
Comparison operators. More... | |
bool | operator> (const UN_DataNumber &other) const |
Comparison operators. More... | |
bool | operator>= (const UN_DataNumber &other) const |
Comparison operators. More... | |
UN_DataNumber & | operator++ () |
Basic arithmetic operators. More... | |
UN_DataNumber | operator++ (int) |
Basic arithmetic operators. More... | |
Additional Inherited Members | |
Public Types inherited from UN_DataNumber | |
enum | ValueType : ValueIntType |
using | ValueIntType = exint |
Static Public Attributes inherited from UN_DataNumber | |
static constexpr ValueType | INVALID_NUMBER = ValueType(-1) |
An index into a data container, referring to a particular data object. Indices may be reused for new data objects, if old objects were deleted.
Definition at line 144 of file UN_Types.h.
|
inlineexplicit |
Definition at line 147 of file UN_Types.h.
|
inlineexplicit |
For past-end array index.
Definition at line 151 of file UN_Types.h.
|
inlineexplicit |
An exint is used for indexing into UT_Array, and UN_DataIndex represents such index, so these types should be interchangeable. Thus providing a constructor from exint.
Definition at line 157 of file UN_Types.h.
Resets the index to an invalid value.
Definition at line 162 of file UN_Types.h.
|
inline |
Implicit cast to exint
for indexing into arrays (eg, UT_Array).
Definition at line 166 of file UN_Types.h.