IList<TValue>.merge 方法

定义

合并两个有序受控序列。

public:
 void merge(Microsoft::VisualC::StlClr::IList<TValue> ^ _Right, Microsoft::VisualC::StlClr::BinaryDelegate<TValue, TValue, bool> ^ _Pred);
public void merge (Microsoft.VisualC.StlClr.IList<TValue> _Right, Microsoft.VisualC.StlClr.BinaryDelegate<TValue,TValue,bool> _Pred);
abstract member merge : Microsoft.VisualC.StlClr.IList<'Value> * Microsoft.VisualC.StlClr.BinaryDelegate<'Value, 'Value, bool> -> unit
Public Sub merge (_Right As IList(Of TValue), _Pred As BinaryDelegate(Of TValue, TValue, Boolean))

参数

_Right
IList<TValue>

要合并到此容器中的容器。

_Pred
BinaryDelegate<TValue,TValue,Boolean>

用于比较元素对的布尔型仿函数。

注解

有关详细信息,请参阅 list::merge (STL/CLR)

适用于