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
enumerableTEnumerableThe enumerable collection instance to append the element to.
valueTElementThe element to append to the collection.
Returns
Type Parameters
TEnumerableThe type of the enumerable collection to append to.
TElementThe type of the element to append.