Returns a copy of this sequence concatenated with otherSequence.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
SyntaxISequence<T> Concat(
Func<IEnumerable<T>> otherSequence
)
ISequence<T> Concat(
Func<IEnumerable<T>> otherSequence
)
Function Concat (
otherSequence As Func(Of IEnumerable(Of T))
) As ISequence(Of T)
Function Concat (
otherSequence As Func(Of IEnumerable(Of T))
) As ISequence(Of T)
ISequence<T>^ Concat(
Func<IEnumerable<T>^>^ otherSequence
)
ISequence<T>^ Concat(
Func<IEnumerable<T>^>^ otherSequence
)
abstract Concat :
otherSequence : Func<IEnumerable<'T>> -> ISequence<'T>
abstract Concat :
otherSequence : Func<IEnumerable<'T>> -> ISequence<'T>
Parameters
- otherSequence
- Type: System.Func<IEnumerable<T>>
The sequence with which to concatenate this sequence; will be lazily evaluated.
Return Value
Type:
ISequence<T>A copy of this sequence concatenated with
otherSequence.
See Also