4 implementations of GetSlotCursor
Microsoft.ML.Data (4)
DataLoadSave\LegacyCompositeDataLoader.cs (1)
603SlotCursor ITransposeDataView.GetSlotCursor(int col)
DataLoadSave\Transpose\TransposeLoader.cs (1)
637SlotCursor ITransposeDataView.GetSlotCursor(int col)
DataView\Transposer.cs (1)
233public SlotCursor GetSlotCursor(int col)
Transforms\TransformBase.cs (1)
778SlotCursor ITransposeDataView.GetSlotCursor(int col)
8 references to GetSlotCursor
Microsoft.ML.Data (8)
Data\ITransposeDataView.cs (1)
17/// cursor via an <see cref="SlotCursor"/> returned by <see cref="GetSlotCursor(int)"/>
DataLoadSave\LegacyCompositeDataLoader.cs (1)
612return _tview.GetSlotCursor(col);
DataView\Transposer.cs (3)
240return _tview.GetSlotCursor(col); 1344using (var cursor = view.GetSlotCursor(col)) 1479_slotCursor = _parent._data.GetSlotCursor(parent._col);
Transforms\LabelConvertTransform.cs (1)
201var cursor = InputTranspose.GetSlotCursor(Infos[iinfo].Source);
Transforms\TransformBase.cs (2)
768/// Returns a standard exception for responding to an invalid call to <see cref="ITransposeDataView.GetSlotCursor"/> 787return InputTranspose.GetSlotCursor(index);