IArrayInt_DG Interface
- GetCount
- GetAt
- SetAt
- InsertAt
- Add
- RemoveAt
- RemoveAll
- Find
- Copy
- Append
All indices in DG Kenel are 0-based
A standalone array can be created via IObjectGenerator_DG.Create("IArrayInt_DG") > IArrayInt_DG query.
int GetCount()
int GetAt(int index)
void SetAt(int index, int val)
void InsertAt(int indexAt, int val)
void Add(int val)
void RemoveAt(int index)
void RemoveAll()
int Find(int val)
Returns -1 if not found
void Copy(IArrayInt_DG iArray)
void Append(IArrayInt_DG iArray)
|