IList<T>
IList<T> is an interface for implementing generic data lists.
Description
The IList<T> interface defines basic methods to work with lists, such as to access an element by index, to search and delete elements, sort, and others.
Declaration
template<typename T>
|
Header
#include <Generic\Interfaces\IList.mqh> |
Inheritance HierarchyIList Direct descendants |
Class Methods
Method |
Description |
---|---|
Gets a list element at the specified index |
|
Changes a value from the list at the specified index |
|
Inserts an element into the list at the specified index |
|
Searches for the first occurrence of a value in a list |
|
Searches for the last occurrence of a value in a list |
|
Removes a list element at the specified index |