3 lines
121 B
C#
3 lines
121 B
C#
public static Func<In, Out> Y<In, Out>(Func<Func<In, Out>, Func<In, Out>> f) {
|
|
return x => f(Y(f))(x);
|
|
}
|