Exemplo n.º 1
0
 public IFuture Curry(ParamDict paramDict)
 {
     IFuture[] futureParams = Array.ConvertAll <IFuturePrototype, IFuture>(prototypeParams,
                                                                           (IFuturePrototype p) => p.Curry(paramDict));
     return(new ApplyFuture(verb, futureParams));
 }
 public IFuture Curry(ParamDict paramDict)
 {
     return(this);
 }
Exemplo n.º 3
0
		public IFuture Curry(ParamDict paramDict)
		{
			return new ConstantFuture(paramDict[this.name]);
		}
 public IFuture Curry(ParamDict paramDict)
 {
     return(new OpenDocumentSensitivePrioritizedFuture(this.prioritizer, this.prototype.Curry(paramDict), this.openDocumentFuture));
 }
Exemplo n.º 5
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(Asynchronizer.MakeFuture(this.scheduler, this.innerPrototype.Curry(paramDict)));
 }
Exemplo n.º 6
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(new DiskCacheFuture(this.cache, this.prototype.Curry(paramDict)));
 }
Exemplo n.º 7
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(MakeFuture(scheduler, innerPrototype.Curry(paramDict)));
 }
Exemplo n.º 8
0
 public IFuture Curry(ParamDict paramDict)
 {
     return(new TransparencyFuture(this.transparencyOptions, this.antialiasedPrototype.Curry(paramDict), this.exactColorPrototype.Curry(paramDict)));
 }