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