feat: Additional binary search extensions, AddSorted methods renamed to InsertSorted

This commit is contained in:
Chris Cameron
2019-09-23 11:43:43 -04:00
parent 602f170091
commit 0e16606d75
5 changed files with 237 additions and 37 deletions

View File

@@ -178,7 +178,7 @@ namespace ICD.Common.Utils.Timers
long duration = stopwatch.ElapsedTicks;
stopwatch.Stop();
orderedMs.AddSorted(duration);
orderedMs.InsertSorted(duration);
totalTicks += duration;
}