6 lines
77 B
Go
6 lines
77 B
Go
|
|
func Y(f FuncFunc) Func {
|
||
|
|
return func(x int) int {
|
||
|
|
return f(Y(f))(x)
|
||
|
|
}
|
||
|
|
}
|