Esempio n. 1
0
        protected RBNode <T> InsertNodeAfter(RBNode <T> node)
        {
            int        index;
            RBTree <T> root = GetRootAndIndex(node, out index);

            return(root.InsertNode(index + node.Size));
        }
Esempio n. 2
0
        // Token: 0x06007693 RID: 30355 RVA: 0x0021E108 File Offset: 0x0021C308
        protected RBNode <T> InsertNodeAfter(RBNode <T> node)
        {
            int        num;
            RBTree <T> rootAndIndex = this.GetRootAndIndex(node, out num);

            return(rootAndIndex.InsertNode(num + node.Size));
        }