8 references to NodeTreeFromList
System.Collections.Immutable (8)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
329return ImmutableList<T>.WrapNode(Node.NodeTreeFromList(this, index, count));
System\Collections\Immutable\ImmutableList_1.cs (2)
557return this.Wrap(Node.NodeTreeFromList(this, index, count)); 1186Node root = Node.NodeTreeFromList(list, 0, list.Count);
System\Collections\Immutable\ImmutableList_1.Node.cs (5)
256Node left = NodeTreeFromList(items, start, leftCount); 257Node right = NodeTreeFromList(items, start + leftCount + 1, rightCount); 580return NodeTreeFromList(array.AsReadOnlyList(), 0, this.Count); 619return NodeTreeFromList(array.AsReadOnlyList(), 0, this.Count); 1562return NodeTreeFromList(list, 0, list.Count);