1 instantiation of FuncInstanceMethodInfo2
Microsoft.ML.Core (1)
Utilities\FuncInstanceMethodInfo2`4.cs (1)
88return new FuncInstanceMethodInfo2<TTarget, T1, T2, TResult>(methodInfo);
4 references to FuncInstanceMethodInfo2
Microsoft.ML.Core (2)
Utilities\FuncInstanceMethodInfo2`4.cs (1)
58public static FuncInstanceMethodInfo2<TTarget, T1, T2, TResult> Create(Expression<Func<TTarget, Func<T1, T2, TResult>>> expression)
Utilities\Utils.cs (1)
1067public static TResult MarshalInvoke<TTarget, TArg1, TArg2, TResult>(FuncInstanceMethodInfo2<TTarget, TArg1, TArg2, TResult> func, TTarget target, Type genArg1, Type genArg2, TArg1 arg1, TArg2 arg2)
Microsoft.ML.Data (2)
Scorers\SchemaBindablePredictorWrapper.cs (2)
37private static readonly FuncInstanceMethodInfo2<SchemaBindablePredictorWrapperBase, DataViewRow, int, Delegate> _getValueGetterMethodInfo 38= FuncInstanceMethodInfo2<SchemaBindablePredictorWrapperBase, DataViewRow, int, Delegate>.Create(target => target.GetValueGetter<int, int>);