Machete.Core.Generators.Generator.Generator C# (CSharp) Méthode

Generator() public méthode

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