This commit is contained in:
Даниил Заикин
2026-06-17 20:44:53 +03:00
parent 9d153773c2
commit b133e7c656
1880 changed files with 244545 additions and 0 deletions
@@ -0,0 +1,24 @@
namespace QFSW.QC
{
/// <summary>
/// Options used by the suggestor when producing suggestions.
/// </summary>
public struct SuggestorOptions
{
/// <summary>
/// If case of the prompt should be considered when producing suggestions.
/// </summary>
public bool CaseSensitive;
/// <summary>
/// If fuzzy searching should be used when producing suggestions.
/// </summary>
public bool Fuzzy;
/// <summary>
/// If overloads of the same suggestion should be collapsed into
/// a single suggestion with optional elements where possible.
/// </summary>
public bool CollapseOverloads;
}
}