-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathImmutableArrayExtensions.cs
52 lines (43 loc) · 1.51 KB
/
ImmutableArrayExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System.Collections.Immutable;
namespace Utilities;
public static class ImmutableArrayExtensions
{
public static bool ContainsBinarySearch<T>(this ImmutableArray<T> collection, T item)
{
return collection.BinarySearch(item) >= 0;
}
public static bool ContainsBinarySearch<T>(this ImmutableArray<T> collection, T item, int index, int length)
{
return collection.BinarySearch(index, length, item, null) >= 0;
}
public static bool ContainsBinarySearch<T>(this ImmutableArray<T> collection, T item, IComparer<T> comparer)
{
return collection.BinarySearch(item, comparer) >= 0;
}
public static bool ContainsBinarySearch<T>(this ImmutableArray<T> collection, T item, int index, int length, IComparer<T> comparer)
{
return collection.BinarySearch(index, length, item, comparer) >= 0;
}
public static bool TryGetValue<T>(this ImmutableArray<T> collection, T value, out T? actualValue)
{
var index = collection.IndexOf(value);
if (index >= 0)
{
actualValue = collection[index];
return true;
}
actualValue = default;
return false;
}
public static bool TryGetValueBinarySearch<T>(this ImmutableArray<T> collection, T value, out T? actualValue)
{
var index = collection.BinarySearch(value);
if (index >= 0)
{
actualValue = collection[index];
return true;
}
actualValue = default;
return false;
}
}