IList<TValue>.merge 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
合并两个有序受控序列。
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) 。