 | ScalarEnumerableCombineT 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
Syntaxpublic 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:
IEnumerableTNew enumerable sequence ending with
scalar
See Also