1 write to _infos
Microsoft.ML.Data (1)
Transforms\MetadataDispatcher.cs (1)
149
_infos
= new ColInfo[colCount];
8 references to _infos
Microsoft.ML.Data (8)
Transforms\MetadataDispatcher.cs (8)
144
protected int ColCount { get { return
_infos
.Length; } }
176
Contracts.CheckParam(0 <= index && index <
_infos
.Length, nameof(index), "Out of range");
177
Contracts.CheckParam(
_infos
[index] == null, nameof(index), "Column already registered");
178
_infos
[index] = info;
196
Contracts.CheckParam(0 <= index && index <
_infos
.Length, nameof(index));
197
return
_infos
[index];
278
ectx.Check(0 <= index && index <
_infos
.Length);
280
var info =
_infos
[index];