Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SharpArena/Collections/ArenaDictionary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public readonly bool TryGetValue(TKey key, out TValue value)
/// <param name="key">The key whose value to get.</param>
/// <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value"/> parameter. This parameter is passed uninitialized.</param>
/// <returns><see langword="true"/> if the <see cref="ArenaDictionary{TKey, TValue}"/> contains an element with the specified key; otherwise, <see langword="false"/>.</returns>
public bool TryGetValue(ReadOnlySpan<char> key, out TValue value)
public readonly bool TryGetValue(ReadOnlySpan<char> key, out TValue value)
{
if (typeof(TKey) == typeof(ArenaUtf16String))
{
Expand Down
Loading