Lucene.Net.Search.FuzzyTermsEnum.LevenshteinAutomataAttribute.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( Attribute target ) : void
target Attribute
return void
            public override void CopyTo(Attribute target)
            {
                IList<CompiledAutomaton> targetAutomata = ((LevenshteinAutomataAttribute)target).Automata();
                targetAutomata.Clear();
                targetAutomata.AddRange(automata);
            }
        }
FuzzyTermsEnum.LevenshteinAutomataAttribute