Iterate through each element sequentially from the start until the end until the desired element is found.
Implementation
Usage
var index = new []{ 1, 2, 3}.LinearSearch(2);
Benchmarks
dotnet run --project ./Benchmarks/Benchmarks.csproj -c Release -- --job short --memory --f *LinearSearch*