Beispiel #1
0
 public IntrusiveList()
 {
     // we implement a circular list, so both Prev and Next are both equal to this initially
     _head = new IntrusiveLink <TLinkKey> {
         Prev = this, Next = this
     };
 }
Beispiel #2
0
 public void WithLink(IntrusiveLink <TLinkKey> .Handler func)
 {
     func(ref _head);
 }