##// END OF EJS Templates
working on linked list
working on linked list

File last commit:

r113:468d156e434e v2-1
r113:468d156e434e v2-1
Show More
MTLinkedListNode.cs
10 lines | 236 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Parallels {
public class MTLinkedListNode<TNode> where T : MTLinkedListNode<TNode> {
public MTLinkedList<TNode> parentList;
public TNode next;
public TNode prev;
}
}