IList<TValue>.merge Método

Definición

Combina dos secuencias controladas ordenadas.

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))

Parámetros

_Right
IList<TValue>

Contenedor en el que se va a combinar este contenedor.

_Pred
BinaryDelegate<TValue,TValue,Boolean>

Functor de tipo booleano para comparar pares de elementos.

Comentarios

Para obtener más información, vea list::merge (STL/CLR).

Se aplica a