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 }; }
public void WithLink(IntrusiveLink <TLinkKey> .Handler func) { func(ref _head); }