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