1 type derived from InPipe
Microsoft.ML.Data (1)
Data\DataViewUtils.cs (1)
701
private sealed class Impl<T> :
InPipe
19 references to InPipe
Microsoft.ML.Data (19)
Data\DataViewUtils.cs (19)
295
private static readonly FuncInstanceMethodInfo1<Splitter, DataViewRowCursor, int,
InPipe
> _createInPipeMethodInfo
296
= FuncInstanceMethodInfo1<Splitter, DataViewRowCursor, int,
InPipe
>.Create(target => target.CreateInPipe<int>);
387
InPipe
[] inPipes = new
InPipe
[outPipes.Length];
420
foreach (
var
pipe in inPipes)
435
foreach (
var
pipe in inPipes)
527
InPipe
[] inPipes = new
InPipe
[activeToCol.Length + (int)ExtraIndex._Lim];
541
var
inPipe = inPipes[c] =
583
foreach (
var
pipe in inPipes)
640
private
InPipe
CreateInPipe<T>(DataViewRow input, int col)
650
private
InPipe
CreateIdInPipe(DataViewRow input)
656
private
InPipe
CreateInPipeCore<T>(int poolIdx, ValueGetter<T> getter)
669
return
InPipe
.Create(pool, getter);
690
public static
InPipe
Create<T>(MadeObjectPool<T[]> pool, ValueGetter<T> getter)
744
/// These are objects continuously created by the <see cref="
InPipe
"/> to spin off the
882
public abstract
InPipe
CreateInPipe(Delegate getter);
917
public override
InPipe
CreateInPipe(Delegate getter)
921
return
InPipe
.Create<T>(_pool, (ValueGetter<T>)getter);