System::Collections::Generic::LinkedListNode class
Contents
[
Hide
]LinkedListNode class
Node of linked list. Implements a wrapper over an iterator of std::list that is wrapped in linked list. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
template<typename T>class LinkedListNode : public System::Object
Parameter | Description |
---|---|
T | Stored value type. |
Methods
Method | Description |
---|---|
get_List() const | Gets containing list. |
get_Next() const | Gets next node. |
get_Previous() const | Gets previous node. |
get_Value() const | Gets stored value. |
LinkedListNode(const T&) | Constructor. |
set_Value(const T&) | Sets stored value. |
See Also
- Class Object
- Namespace System::Collections::Generic
- Library Aspose.PUB for C++