| AlgorithmsReplaceInPlace Method |
| Name | Description | |
|---|---|---|
| ReplaceInPlaceT(IListT, PredicateT, T) |
Replace all items in a list or array that a predicate evaluates at true with a value. The replacement is done in-place, changing
the list.
| |
| ReplaceInPlaceT(IListT, T, T) |
Replace all items in a list or array equal to a particular value with another value. The replacement is done in-place, changing
the list.
| |
| ReplaceInPlaceT(IListT, T, T, IEqualityComparerT) |
Replace all items in a list or array equal to a particular value with another values.
The replacement is done in-place, changing
the list. A passed IEqualityComparer is used to determine equality.
|