#nullable enable
using System.Diagnostics.CodeAnalysis;
namespace Robust.Shared.Utility
{
///
/// Extension methods for .
///
public static class UniqueIndexExtensions {
///
/// Completely resets a .
///
/// A given index.
/// The type of key.
/// The type of value.
///
[SuppressMessage("ReSharper", "RedundantAssignment")]
public static void Clear(ref this UniqueIndex index) where TKey: notnull => index = default;
}
}