コード例 #1
0
ファイル: Monad.cs プロジェクト: BoykoDmitry/csharp
 /**
  * Runs the given computation with the given initial argument and returns
  * its final answer.
  *
  * @param c the computation to run.
  * @param initArg the initial argument to the computation.
  */
 public IResut Run(Computation c, Object initArg)
 {
     return c.Apply(initArg);
 }
コード例 #2
0
ファイル: Monad.cs プロジェクト: maxisam/csharp
 /**
  * Runs the given computation with the given initial argument and returns
  * its final answer.
  *
  * @param c the computation to run.
  * @param initArg the initial argument to the computation.
  */
 public IResut Run(Computation c, Object initArg)
 {
     return(c.Apply(initArg));
 }
コード例 #3
0
ファイル: Monad.cs プロジェクト: BoykoDmitry/csharp
 /**
  * Runs the given computation and returns its final answer.
  *
  * @param c the computation to run.
  * @return the final answer.
  */
 public IResut Run(Computation c)
 {
     return c.Apply();
 }
コード例 #4
0
ファイル: Monad.cs プロジェクト: maxisam/csharp
 /**
  * Runs the given computation and returns its final answer.
  *
  * @param c the computation to run.
  * @return the final answer.
  */
 public IResut Run(Computation c)
 {
     return(c.Apply());
 }