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;
295
if (
_pivotIndex
[i] < 0)
410
_ectx.Assert(
_pivotIndex
[col] >= 0);
411
return _infos[
_pivotIndex
[col]];
422
return
_pivotIndex
[col] >= 0;