5 lines
71 B
Objective-C
5 lines
71 B
Objective-C
Func Y(FuncFunc f) {
|
|
return ^(int x) {
|
|
return f(Y(f))(x);
|
|
};
|
|
}
|