BitOrchestra.BufferedEvaluator.Generate C# (CSharp) Method

Generate() public method

Generates the values of the evaluator starting at the given offset and returns them as a buffer.
public Generate ( Int32 Start ) : Value[]
Start System.Int32
return Value[]
        public Value[] Generate(Value Start)
        {
            if (!this.Ready)
            {
                this.Source.Generate(Start, this.Buffer);
                this.Ready = true;
            }
            return this.Buffer;
        }

Same methods

BufferedEvaluator::Generate ( Int32 Start, Int32 Buffer ) : void