C# Class StateMonad.Exercise5.Exercise5

Mostrar archivo Open project: panesofglass/StateMonad

Public Methods

Method Description
Run ( Tree tree, Rect>.Tuple seed ) : void

Runs the specified tree.

For this exercise, it's helpful to look at the monad builder syntax in F#. In my case, that was Exercise1_2.fs. I've noted the use and similarities of that implementation where it was used here.

Method Details

Run() public static method

Runs the specified tree.
For this exercise, it's helpful to look at the monad builder syntax in F#. In my case, that was Exercise1_2.fs. I've noted the use and similarities of that implementation where it was used here.
public static Run ( Tree tree, Rect>.Tuple seed ) : void
tree Tree The tree.
seed Rect>.Tuple The seed.
return void