using System;
namespace nietras.SeparatedValues;
/// Specifies the column trimming options.
[Flags]
public enum SepTrim : byte
{
/// No trimming is applied.
None = 0b000,
/// Trim outermost before any unescaping.
Outer = 0b001,
/// Trim after any unescaping.
AfterUnescape = 0b010,
/// Trim all.
All = Outer | AfterUnescape,
}