Summary
Merges the item intos the existing discriminatedunions resulting in a new enumerable of discriminated unions with the type of the items as a new option.
Syntax
public static IEnumerable<DiscriminatedUnion<Type1, Type2, Type3>> Merge<Type1, Type2, Type3>(this IEnumerable<DiscriminatedUnion<Type1, Type2>> values, IEnumerable<Type3> items)
Type Parameters
Name |
Description |
Type1 |
Type1 |
Type2 |
Type2 |
Type3 |
Type3 |
Parameters
Name |
Type |
Description |
values |
IEnumerable<DiscriminatedUnion<Type1, Type2>> |
existing Discriminated unions |
items |
IEnumerable<Type3> |
|
Return Value
Type |
Description |
IEnumerable<DiscriminatedUnion<Type1, Type2, Type3>> |
|