Delegate EnumerableAppender<TEnumerable, TElement>
- Namespace
- PolyType.Abstractions
- Assembly
- PolyType.dll
Delegate that appends an element to a mutable enumerable collection.
public delegate bool EnumerableAppender<TEnumerable, TElement>(ref TEnumerable enumerable, TElement value)
Parameters
enumerable
TEnumerableThe enumerable collection instance to append the element to.
value
TElementThe element to append to the collection.
Returns
Type Parameters
TEnumerable
The type of the enumerable collection to append to.
TElement
The type of the element to append.