Click or drag to resize

FillForwardExtension Class

FillForward extension.
Inheritance Hierarchy
SystemObject
  MoreLinq.ExtensionsFillForwardExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.2.0+5205ea241d72b079436060d330cd5c2eae7cdcdf
Syntax
public static class FillForwardExtension
Methods
  NameDescription
Public methodStatic memberFillForwardT(IEnumerableT)
Returns a sequence with each null reference or value in the source replaced with the previous non-null reference or value seen in that sequence.
Public methodStatic memberFillForwardT(IEnumerableT, FuncT, Boolean)
Returns a sequence with each missing element in the source replaced with the previous non-missing element seen in that sequence. An additional parameter specifies a function used to determine if an element is considered missing or not.
Public methodStatic memberFillForwardT(IEnumerableT, FuncT, Boolean, FuncT, T, T)
Returns a sequence with each missing element in the source replaced with one based on the previous non-missing element seen in that sequence. Additional parameters specifiy two functions, one used to determine if an element is considered missing or not and another to provide the replacement for the missing element.
Top
See Also