Click or drag to resize
Llvm.NET LogoScalarEnumerableCombineT Method (IEnumerableT, T)

[This is preliminary documentation and is subject to change.]

Creates a new enumerable that appends a value to an existing enumerable sequence

Namespace:  Llvm.NET
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public static IEnumerable<T> Combine<T>(
	IEnumerable<T> values,
	T scalar
)

Parameters

values
Type: System.Collections.GenericIEnumerableT
Existing enumerable
scalar
Type: T
Value to append to the existing sequence

Type Parameters

T
Type of values to enumerate

Return Value

Type: IEnumerableT
New enumerable sequence ending with scalar
See Also