Machete.Core.Generators.Generator.Generator C# (CSharp) 메소드

Generator() 공개 메소드

public Generator ( IEnumerable steps ) : System.Collections.Generic
steps IEnumerable
리턴 System.Collections.Generic
        public Generator(IEnumerable<GeneratorStep> steps)
        {
            Steps = new Queue<GeneratorStep>(steps);
        }
Generator