技术文档MQL5参考标准程序库通用数据集CArrayList<T>ReverseReverseReverse颠倒列表中元素的顺序。处理整个列表的版本。bool Reverse();处理指定列表元素范围的版本。bool Reverse( const int start_index, // 索引起始点 const int count // 元素数量 );参数 start_index[in] 索引起始点。count[in] 参与操作的列表元素数量。返回值 成功返回true,否则返回false。RemoveRangeSort