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)
121var firstNewline = Array.FindIndex(firstChunk, x => x == '\n'); 189int iMin = (i == 0) ? 0 : Array.FindIndex(chunks[i], x => x == '\n') + 1;
Microsoft.ML.Data (1)
Commands\ScoreCommand.cs (1)
232if (ImplOptions.OutputColumns != null && Array.FindIndex(ImplOptions.OutputColumns, schema[i].Name.Equals) >= 0)
Microsoft.ML.EntryPoints (1)
ScoreColumnSelector.cs (1)
53if (extraColumns != null && Array.FindIndex(extraColumns, columnName.Equals) >= 0)
Microsoft.ML.FastTree (2)
TreeEnsemble\InternalRegressionTree.cs (2)
1026int parent = Array.FindIndex(LteChild, x => x == ~leaf); 1031parent = Array.FindIndex(GtChild, x => x == ~leaf);