IList<TValue>.splice Método

Definição

Reordena os links entre os nós.

Sobrecargas

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>)

Insere a sequência fornecida no contêiner antes da posição especificada.

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>, ContainerBidirectionalIterator<TValue>)

Remove o elemento do contêiner fornecido apontado pelo _First e insere-o antes do elemento na sequência controlada apontada pelo _Where.

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>, ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>)

Remove o intervalo de elementos [_First, _Last) do contêiner fornecido e insere-o antes do elemento na sequência controlada apontada pelo _Where.

Comentários

Para obter mais informações, consulte list::splice (STL/CLR).

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>)

Insere a sequência fornecida no contêiner antes da posição especificada.

public:
 void splice(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _Where, Microsoft::VisualC::StlClr::IList<TValue> ^ _Right);
public void splice (Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _Where, Microsoft.VisualC.StlClr.IList<TValue> _Right);
abstract member splice : Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> * Microsoft.VisualC.StlClr.IList<'Value> -> unit
Public Sub splice (_Where As ContainerBidirectionalIterator(Of TValue), _Right As IList(Of TValue))

Parâmetros

_Where
ContainerBidirectionalIterator<TValue>

A posição no contêiner antes do qual realizar splice.

_Right
IList<TValue>

O contêiner do qual realizar splice. Todos os elementos serão removidos deste contêiner após a operação de splice.

Aplica-se a

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>, ContainerBidirectionalIterator<TValue>)

Remove o elemento do contêiner fornecido apontado pelo _First e insere-o antes do elemento na sequência controlada apontada pelo _Where.

public:
 void splice(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _Where, Microsoft::VisualC::StlClr::IList<TValue> ^ _Right, Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _First);
public void splice (Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _Where, Microsoft.VisualC.StlClr.IList<TValue> _Right, Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _First);
abstract member splice : Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> * Microsoft.VisualC.StlClr.IList<'Value> * Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> -> unit
Public Sub splice (_Where As ContainerBidirectionalIterator(Of TValue), _Right As IList(Of TValue), _First As ContainerBidirectionalIterator(Of TValue))

Parâmetros

_Where
ContainerBidirectionalIterator<TValue>

A posição no contêiner antes do qual realizar splice.

_Right
IList<TValue>

O contêiner do qual realizar splice.

_First
ContainerBidirectionalIterator<TValue>

A posição do elemento a ter splice.

Aplica-se a

splice(ContainerBidirectionalIterator<TValue>, IList<TValue>, ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>)

Remove o intervalo de elementos [_First, _Last) do contêiner fornecido e insere-o antes do elemento na sequência controlada apontada pelo _Where.

public:
 void splice(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _Where, Microsoft::VisualC::StlClr::IList<TValue> ^ _Right, Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _First, Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _Last);
public void splice (Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _Where, Microsoft.VisualC.StlClr.IList<TValue> _Right, Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _First, Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _Last);
abstract member splice : Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> * Microsoft.VisualC.StlClr.IList<'Value> * Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> * Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> -> unit
Public Sub splice (_Where As ContainerBidirectionalIterator(Of TValue), _Right As IList(Of TValue), _First As ContainerBidirectionalIterator(Of TValue), _Last As ContainerBidirectionalIterator(Of TValue))

Parâmetros

_Where
ContainerBidirectionalIterator<TValue>

A posição no contêiner antes do qual realizar splice.

_Right
IList<TValue>

O contêiner do qual realizar splice.

_First
ContainerBidirectionalIterator<TValue>

A posição de início do intervalo de elementos a ter splice.

_Last
ContainerBidirectionalIterator<TValue>

A primeira posição além do intervalo de elementos a ter splice.

Aplica-se a