Beispiel #1
0
 private static void MapFunctionWithoutBuffer(DataBox <TInput> input, DataBox <TOutput> output, TState state)
 {
     state.ProcessWithoutBuffer(ref input.Value, ref output.Value);
 }
Beispiel #2
0
 private static void MapFunctionWithoutBuffer(DataBox <TInput> input, DataBoxForecastingWithConfidenceIntervals <TOutput> output, TState state)
 {
     state.ProcessWithoutBuffer(ref input.Value, ref output.Forecast, ref output.ConfidenceIntervalLowerBound, ref output.ConfidenceIntervalUpperBound);
 }