IArrayBool_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("IArrayBool_DG") > IArrayBool_DG query. 
 
	int GetCount() 
 
	bool GetAt(int index) 
 
	void SetAt(int index, bool val) 
 
	void InsertAt(int indexAt, bool val) 
 
	void Add(bool val) 
 
	void RemoveAt(int index) 
 
	void RemoveAll() 
 
	int Find(bool val) 
Returns -1 if not found 
 
	void Copy(IArrayBool_DG iArray) 
 
	void Append(IArrayBool_DG iArray) 
 
                 |