System::Collections::Generic::LinkedList::Remove method
LinkedList::Remove(const SharedPtr<LinkedListNode<T>>&) method
Removes node from list.
void System::Collections::Generic::LinkedList<T>::Remove(const SharedPtr<LinkedListNode<T>> &node)
Parameter | Type | Description |
---|---|---|
node | const SharedPtr<LinkedListNode<T>>& | Node to remove. |
See Also
- Typedef SharedPtr
- Class LinkedListNode
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.TeX for C++
LinkedList::Remove(const T&) method
Removes first occurance of the specified element from list.
bool System::Collections::Generic::LinkedList<T>::Remove(const T &element) override
Parameter | Type | Description |
---|---|---|
element | const T& | Element to remove. |
ReturnValue
True if element was found and removed, false otherwise.
See Also
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.TeX for C++