System::Collections::Generic::LinkedList::AddBefore method
Contents
[
Hide
]LinkedList::AddBefore(const SharedPtr<LinkedListNode<T>>&, const SharedPtr<LinkedListNode<T>>&) method
Adds newNode before node of the list.
void System::Collections::Generic::LinkedList<T>::AddBefore(const SharedPtr<LinkedListNode<T>> &node, const SharedPtr<LinkedListNode<T>> &newNode)
Parameter | Type | Description |
---|---|---|
node | const SharedPtr<LinkedListNode<T>>& | Node before which to insert |
newNode | const SharedPtr<LinkedListNode<T>>& | New node to add |
See Also
- Typedef SharedPtr
- Class LinkedListNode
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.TeX for C++
LinkedList::AddBefore(const SharedPtr<LinkedListNode<T>>&, const T&) method
Adds element before node of the list.
SharedPtr<LinkedListNode<T>> System::Collections::Generic::LinkedList<T>::AddBefore(const SharedPtr<LinkedListNode<T>> &node, const T &element)
Parameter | Type | Description |
---|---|---|
node | const SharedPtr<LinkedListNode<T>>& | Node before which to insert |
element | const T& | Element to add |
ReturnValue
New node.
See Also
- Typedef SharedPtr
- Class LinkedListNode
- Class LinkedList
- Namespace System::Collections::Generic
- Library Aspose.TeX for C++