Class FillMissingFunction


  • public class FillMissingFunction
    extends Object
    A mapping function to fill all non-existing values with a given value.

    Uses:

    • If two Values are passed in, a Value mimicking the first parameter with the second parameter used as filler will be returned.
    • If two ValueStreams are passed in, a ValueStream mimicking the first parameter with the second parameter used as filler will be returned.

    The resulting Value or ValueStream will be typed with the closest super-type of the two parameters. (e.g. "fill_missing"(double,int) will return a double)