This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SparseArrayBuilder type to reduce allocations
- Loading branch information
Showing
9 changed files
with
499 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
src/Common/src/System/Collections/Generic/EnumerableHelpers.Linq.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
namespace System.Collections.Generic | ||
{ | ||
/// <summary> | ||
/// Internal helper functions for working with enumerables. | ||
/// </summary> | ||
internal static partial class EnumerableHelpers | ||
{ | ||
/// <summary> | ||
/// Tries to get the count of the enumerable cheaply. | ||
/// </summary> | ||
/// <typeparam name="T">The element type of the source enumerable.</typeparam> | ||
/// <param name="source">The enumerable to count.</param> | ||
/// <param name="count">The count of the enumerable, if it could be obtained cheaply.</param> | ||
/// <returns><c>true</c> if the enumerable could be counted cheaply; otherwise, <c>false</c>.</returns> | ||
internal static bool TryGetCount<T>(IEnumerable<T> source, out int count) | ||
{ | ||
Debug.Assert(source != null); | ||
|
||
var collection = source as ICollection<T>; | ||
if (collection != null) | ||
{ | ||
count = collection.Count; | ||
return true; | ||
} | ||
|
||
var provider = source as IIListProvider<T>; | ||
if (provider != null) | ||
{ | ||
count = provider.GetCount(onlyIfCheap: true); | ||
return count >= 0; | ||
} | ||
|
||
count = -1; | ||
return false; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.