using System; namespace PKHeX.Core; /// /// Complex modification of data to a string value. /// public interface IComplexSet { bool IsMatch(ReadOnlySpan name, ReadOnlySpan value); void Modify(PKM pk, StringInstruction instr); }