Table of Contents

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 TEnumerable

The enumerable collection instance to append the element to.

value TElement

The element to append to the collection.

Returns

bool

true if the append operation was successful, false otherwise.

Type Parameters

TEnumerable

The type of the enumerable collection to append to.

TElement

The type of the element to append.