13 references to GetHashCodeOrdinalIgnoreCase
System.Collections.Immutable (13)
System\Collections\Frozen\String\KeyAnalyzer.cs (1)
319
public override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan(IsLeft ? Index : (s.Length + Index), Count));
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_FullCaseInsensitive.cs (2)
30
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan());
31
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s);
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_LeftJustifiedCaseInsensitiveSubstring.cs (2)
28
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan(HashIndex, HashCount));
29
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.Slice(HashIndex, HashCount));
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_RightJustifiedCaseInsensitiveSubstring.cs (2)
28
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan(s.Length + HashIndex, HashCount));
29
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.Slice(s.Length + HashIndex, HashCount));
System\Collections\Frozen\String\OrdinalStringFrozenSet_FullCaseInsensitive.cs (2)
29
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan());
30
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s);
System\Collections\Frozen\String\OrdinalStringFrozenSet_LeftJustifiedCaseInsensitiveSubstring.cs (2)
27
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan(HashIndex, HashCount));
28
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.Slice(HashIndex, HashCount));
System\Collections\Frozen\String\OrdinalStringFrozenSet_RightJustifiedCaseInsensitiveSubstring.cs (2)
27
private protected override int GetHashCode(string s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.AsSpan(s.Length + HashIndex, HashCount));
28
private protected override int GetHashCode(ReadOnlySpan<char> s) => Hashing.
GetHashCodeOrdinalIgnoreCase
(s.Slice(s.Length + HashIndex, HashCount));