IArrayDouble_DG Interface
All indices in DG Kenel are 0-based
A standalone array can be created with a IObjectGenerator_DG.Create("IArrayDouble_DG") call.
- GetCount
- SetCount
- IsEmpty
- GetAt
- SetAt
- InsertAt
- Add
- RemoveAt
- RemoveAll
- Find
- Copy
- Append
int GetCount()
bool IsEmpty()
void SetCount(int count)
double GetAt(int index)
void SetAt(int index, double val)
void InsertAt(int indexAt, double val)
void Add(double val)
void RemoveAt(int index)
void RemoveAll()
int Find(double val, double tolerance)
Returns -1 if not found
void Copy(IArrayDouble_DG iArray)
void Append(IArrayDouble_DG iArray)
|