17 references to Wrap
System.Collections.Immutable (17)
System\Collections\Immutable\ImmutableList_1.cs (17)
210
return this.
Wrap
(result);
228
return this.
Wrap
(result);
252
return this.
Wrap
(_root.AddRange(items));
262
return this.
Wrap
(_root.Insert(index, item));
275
return this.
Wrap
(result);
310
return this.
Wrap
(result);
355
return this.
Wrap
(result);
365
return this.
Wrap
(result);
383
return this.
Wrap
(_root.RemoveAll(match));
389
public ImmutableList<T> SetItem(int index, T value) => this.
Wrap
(_root.ReplaceAt(index, value));
414
public ImmutableList<T> Reverse() => this.
Wrap
(_root.Reverse());
422
public ImmutableList<T> Reverse(int index, int count) => this.
Wrap
(_root.Reverse(index, count));
428
public ImmutableList<T> Sort() => this.
Wrap
(_root.Sort());
442
return this.
Wrap
(_root.Sort(comparison));
454
public ImmutableList<T> Sort(IComparer<T>? comparer) => this.
Wrap
(_root.Sort(comparer));
477
return this.
Wrap
(_root.Sort(index, count, comparer));
559
return this.
Wrap
(Node.NodeTreeFromList(this, index, count));