from
fun <V : Any, A : Any, I : ContextIntention<I>> from(paramTypeA: ContextParamType<A, I>, fillValue: (A) -> V?): Autofiller<V, I>
Creates an Autofiller that uses paramTypeA to generate a value of type V using fillValue.
fun <V : Any, A : Any, B : Any, I : ContextIntention<I>> from(paramTypeA: ContextParamType<A, I>, paramTypeB: ContextParamType<B, I>, fillValue: (A, B) -> V?): Autofiller<V, I>
Creates an Autofiller that uses paramTypeA and paramTypeB to generate a value of type V using fillValue.
fun <V : Any, A : Any, B : Any, C : Any, I : ContextIntention<I>> from(paramTypeA: ContextParamType<A, I>, paramTypeB: ContextParamType<B, I>, paramTypeC: ContextParamType<C, I>, fillValue: (A, B, C) -> V?): Autofiller<V, I>
Creates an Autofiller that uses paramTypeA, paramTypeB and paramTypeC to generate a value of type V using fillValue.
fun <V : Any, A : Any, B : Any, C : Any, D : Any, I : ContextIntention<I>> from(paramTypeA: ContextParamType<A, I>, paramTypeB: ContextParamType<B, I>, paramTypeC: ContextParamType<C, I>, paramTypeD: ContextParamType<D, I>, fillValue: (A, B, C, D) -> V?): Autofiller<V, I>
Creates an Autofiller that uses paramTypeA, paramTypeB, paramTypeC and paramTypeD to generate a value