This commit is contained in:
melekhin
2026-06-08 14:31:31 +07:00
parent f9cca53f75
commit f5eb667973
36 changed files with 159 additions and 41 deletions

View File

@@ -8,7 +8,7 @@ namespace QWERTYkez.ExcelProcessor;
/// к верхнему регистру и удаляет диакритические знаки (например, 'ё' -> 'Е').
/// Реализует ISet<string>, поэтому может использоваться там, где ожидается этот интерфейс.
/// </summary>
public class NormalizedSet : ISet<string>
internal class NormalizedSet : ISet<string>
{
private readonly HashSet<string> _inner;