8 references to NodeTreeFromList
System.Collections.Immutable (8)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
340return ImmutableList<T>.WrapNode(Node.NodeTreeFromList(this, index, count));
System\Collections\Immutable\ImmutableList_1.cs (2)
566return this.Wrap(Node.NodeTreeFromList(this, index, count)); 1200Node root = Node.NodeTreeFromList(list, 0, list.Count);
System\Collections\Immutable\ImmutableList_1.Node.cs (5)
276Node left = NodeTreeFromList(items, start, leftCount); 277Node right = NodeTreeFromList(items, start + leftCount + 1, rightCount); 600return NodeTreeFromList(array.AsOrderedCollection(), 0, this.Count); 639return NodeTreeFromList(array.AsOrderedCollection(), 0, this.Count); 1582return NodeTreeFromList(list, 0, list.Count);