1 write to _pivotIndex
Microsoft.ML.Transforms (1)
UngroupTransform.cs (1)
282_pivotIndex = Utils.CreateArray(InputColumnCount, -1);
8 references to _pivotIndex
Microsoft.ML.Transforms (8)
UngroupTransform.cs (8)
249/// <see cref="_pivotIndex"/>[i] is -1 means that the i-th column in both of <see cref="_inputSchema"/> and <see cref="OutputSchema"/> 251/// If <see cref="_pivotIndex"/>[i] is not -1, the i-th output column should be produced by ungrouping the i-th input column. 286_ectx.Assert(_pivotIndex[info.Index] == -1); 287_pivotIndex[info.Index] = i; 295if (_pivotIndex[i] < 0) 410_ectx.Assert(_pivotIndex[col] >= 0); 411return _infos[_pivotIndex[col]]; 422return _pivotIndex[col] >= 0;