2 writes to _indices
Microsoft.ML.Data (2)
Deprecated\Instances\HeaderSchema.cs (2)
384_indices = new int[cnn]; 417_indices = indices;
17 references to _indices
Microsoft.ML.Data (17)
Deprecated\Instances\HeaderSchema.cs (17)
393_indices[cv] = i; 431if (iv < _indices.Length && _indices[iv] < index) 433if (++iv < _indices.Length && _indices[iv] < index) 434iv = _indices.FindIndexSorted(iv + 1, _indices.Length, index); 436else if (iv > 0 && _indices[iv - 1] >= index) 438if (--iv > 0 && _indices[iv - 1] >= index) 439iv = _indices.FindIndexSorted(0, iv - 1, index); 441Contracts.Assert(iv == _indices.FindIndexSorted(index)); 444if (iv < _names.Length && _indices[iv] == index) 455if (ii < _indices.Length && _indices[ii] == i) 472lookup[name] = _indices[iv]; 478for (int i = 0; i < _indices.Length; i++) 479yield return new KeyValuePair<int, string>(_indices[i], _names[i]);