7 references to FindIndex
Microsoft.Maui (1)
Extensions\EnumerableExtensions.cs (1)
159
return Array.
FindIndex
(array, arrayPredicate);
Microsoft.ML.AutoML (2)
ColumnInference\TextFileSample.cs (2)
121
var firstNewline = Array.
FindIndex
(firstChunk, x => x == '\n');
189
int iMin = (i == 0) ? 0 : Array.
FindIndex
(chunks[i], x => x == '\n') + 1;
Microsoft.ML.Data (1)
Commands\ScoreCommand.cs (1)
232
if (ImplOptions.OutputColumns != null && Array.
FindIndex
(ImplOptions.OutputColumns, schema[i].Name.Equals) >= 0)
Microsoft.ML.EntryPoints (1)
ScoreColumnSelector.cs (1)
53
if (extraColumns != null && Array.
FindIndex
(extraColumns, columnName.Equals) >= 0)
Microsoft.ML.FastTree (2)
TreeEnsemble\InternalRegressionTree.cs (2)
1026
int parent = Array.
FindIndex
(LteChild, x => x == ~leaf);
1031
parent = Array.
FindIndex
(GtChild, x => x == ~leaf);