Machete.Core.Generators.Generator.Generator C# (CSharp) Method

Generator() public method

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