public FunctionCall(Lambda lambda) => this.lambda = lambda;
public LambdaApp(Lambda left, Lambda right) => lambdas = new List <Lambda>
public void Add(Lambda lambda) { lambdas.Add(lambda); }
public NSLazyRange(Value seed, Lambda increment) { this.seed = seed; this.increment = increment; }
public NSLazyRangeGenerator(INSGeneratorSource generatorSource, Value seed, Lambda increment) : base(generatorSource) { this.seed = seed; this.increment = increment; }
public Value If() { lambda = new Lambda(RegionManager.Regions.Current, Arguments.Executable, Arguments.Parameters, false); return(this); }