2 writes to _bindings
Microsoft.ML.Data (2)
DataView\RowToRowMapperTransform.cs (2)
102_bindings = new ColumnBindings(input.Schema, mapper.GetOutputColumns()); 118_bindings = new ColumnBindings(input.Schema, _mapper.GetOutputColumns());
14 references to _bindings
Microsoft.ML.Data (14)
DataView\RowToRowMapperTransform.cs (14)
89public override DataViewSchema OutputSchema => _bindings.Schema; 149int n = _bindings.Schema.Count; 153var activeInput = _bindings.GetActiveInput(predicate); 154Contracts.Assert(activeInput.Length == _bindings.InputSchema.Count); 163inputColumns = _bindings.InputSchema.Where(col => activeInput[col.Index] || predicateIn(col.Index)); 171Contracts.Assert(active.Length == _bindings.Schema.Count); 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)) 332int index = _parent._bindings.MapColumnIndex(out isSrc, column.Index); 351int index = _parent._bindings.MapColumnIndex(out isSrc, column.Index); 374_bindings = parent._bindings;