1 write to AddedColumnIndices
Microsoft.ML.Data (1)
Transforms\ColumnBindingsBase.cs (1)
736AddedColumnIndices = addedIndices.AsReadOnly();
12 references to AddedColumnIndices
Microsoft.ML.Data (7)
DataView\RowToRowMapperTransform.cs (5)
176Contracts.Assert(0 <= col && col < _bindings.AddedColumnIndices.Count); 177return 0 <= col && col < _bindings.AddedColumnIndices.Count && active[_bindings.AddedColumnIndices[col]]; 184if (_bindings.AddedColumnIndices.Any(predicate)) 207if (inputs.Length == 1 && n > 1 && _bindings.AddedColumnIndices.Any(predicate))
Transforms\ColumnBindingsBase.cs (2)
754Contracts.Assert(index < AddedColumnIndices.Count); 778Contracts.Assert(-AddedColumnIndices.Count <= src && src < InputSchema.Count);
Microsoft.ML.TimeSeries (5)
SequentialTransformerBase.cs (5)
853Contracts.Assert(0 <= col && col < _bindings.AddedColumnIndices.Count); 854return 0 <= col && col < _bindings.AddedColumnIndices.Count && active[_bindings.AddedColumnIndices[col]]; 861if (_bindings.AddedColumnIndices.Any(predicate)) 887if (inputs.Length == 1 && n > 1 && _bindings.AddedColumnIndices.Any(predicate))