FillBackwardExtensionFillBackwardT(IEnumerableT, FuncT, Boolean) Method

Returns a sequence with each missing element in the source replaced with the following non-missing element in that sequence. An additional parameter specifies a function used to determine if an element is considered missing or not.

Definition

Namespace: MoreLinq.Extensions
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
C#
public static IEnumerable<T> FillBackward<T>(
	this IEnumerable<T> source,
	Func<T, bool> predicate
)

Parameters

source  IEnumerableT
The source sequence.
predicate  FuncT, Boolean
The function used to determine if an element in the sequence is considered missing.

Type Parameters

T
Type of the elements in the source sequence.

Return Value

IEnumerableT
An IEnumerableT with missing values replaced.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This method uses deferred execution semantics and streams its results. If elements are missing at the end of the sequence then they remain missing.

See Also