예제 #1
0
파일: State.cs 프로젝트: brontofuzik/monads
 public S ExecState(StateM <S, A> m, S s) => StateM.ExecState <S, A>(m, s);
예제 #2
0
파일: State.cs 프로젝트: brontofuzik/monads
 public Func <S, S> ExecState(StateM <S, A> m) => StateM.ExecState <S, A>(m);