1 write to _items
Microsoft.ML.DataView (1)
DataViewSchema.cs (1)
387
_items
= new List<(string Name, DataViewType Type, Annotations Annotations)>();
8 references to _items
Microsoft.ML.DataView (8)
DataViewSchema.cs (8)
403
_items
.Add((name, type, annotations));
432
for (int i = 0; i <
_items
.Count; i++)
433
nameMap[
_items
[i].Name] = i;
435
var columns = new Column[
_items
.Count];
437
columns[i] = new Column(
_items
[i].Name, i, nameMap[
_items
[i].Name] != i,
_items
[i].Type,
_items
[i].Annotations);