Método System::Collections::Generic::LinkedList::Remove
LinkedList::Remove(const SharedPtr<LinkedListNode<T>>&) method
Elimina el nodo de la lista.
void System::Collections::Generic::LinkedList<T>::Remove(const SharedPtr<LinkedListNode<T>> &node)
| Parámetro | Tipo | Descripción |
|---|---|---|
| nodo | const SharedPtr<LinkedListNode<T>>& | Nodo a eliminar. |
Ver también
- Typedef SharedPtr
- Class LinkedListNode
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.PDF for C++
LinkedList::Remove(const T&) method
Elimina la primera aparición del element especificado de la lista.
bool System::Collections::Generic::LinkedList<T>::Remove(const T &element) override
| Parámetro | Tipo | Descripción |
|---|---|---|
| elemento | const T& | Elemento a eliminar. |
ReturnValue
Verdadero si element se encontró y eliminó, falso en caso contrario.
Ver también
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.PDF for C++