Added comments to StackNode
This commit is contained in:
parent
4fb6d4e15a
commit
40f73375b9
@ -6,8 +6,7 @@ using System.Threading.Tasks;
|
|||||||
namespace C_.Datastructures.Nodes
|
namespace C_.Datastructures.Nodes
|
||||||
{
|
{
|
||||||
internal class StackNode<T> : Node<T, StackNode<T>>
|
internal class StackNode<T> : Node<T, StackNode<T>>
|
||||||
{
|
{//Inherits from Node
|
||||||
|
|
||||||
public static StackNode<T> Create(T? value, StackNode<T>? next)
|
public static StackNode<T> Create(T? value, StackNode<T>? next)
|
||||||
{
|
{
|
||||||
return new StackNode<T>
|
return new StackNode<T>
|
||||||
|
Loading…
Reference in New Issue
Block a user