コード例 #1
0
ファイル: Lazy.cs プロジェクト: endofunk/Endofunk-FX
 public static Lazy <R> Apply <A, R>(this Lazy <Func <A, R> > fn, Lazy <A> @this) => @this.Apply(fn);