SuppliedFunctionSupplier

constructor(t: Supplier<T>, func: Function<T, R>)

Parameters

T

input type

R

supplied and function output type

t

Supplier<T> supplier of function inputs. Used when this is called as a supplier

func

Function<T, R> function to apply inputs from the supplier or the apply call.