Skip to content

Commit

Permalink
- Removed the Update and GetOrDefault extension methods (they wer…
Browse files Browse the repository at this point in the history
…e unused).

 - Renamed `DictionaryExtensions` to `KeyValuePairExtensions`, since nothing in that file extends dictionary any more!
  • Loading branch information
martindevans committed Jul 20, 2023
1 parent a53ede1 commit 18462be
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 30 deletions.
30 changes: 0 additions & 30 deletions LLama/Extensions/DictionaryExtensions.cs

This file was deleted.

24 changes: 24 additions & 0 deletions LLama/Extensions/KeyValuePairExtensions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System.Collections.Generic;

namespace LLama.Extensions
{
/// <summary>
/// Extensions to the KeyValuePair struct
/// </summary>
public static class KeyValuePairExtensions
{
/// <summary>
/// Deconstruct a KeyValuePair into it's constituent parts.
/// </summary>
/// <param name="pair">The KeyValuePair to deconstruct</param>
/// <param name="first">First element, the Key</param>
/// <param name="second">Second element, the Value</param>
/// <typeparam name="TKey">Type of the Key</typeparam>
/// <typeparam name="TValue">Type of the Value</typeparam>
public static void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue> pair, out TKey first, out TValue second)
{
first = pair.Key;
second = pair.Value;
}
}
}

0 comments on commit 18462be

Please sign in to comment.