an issue How I discovered Y-Combinator and why I do need them ? Why Y-Combinator ? Introduction to Lambda Calculus Exemples of basic Lambda Calculus and equivalent in PHP Y-Combinator in PHP (for me and others github repositories) Plan @matyo91 25-04-2023 @matyo91
other functions) that enables recursion, when you can't refer to the function from within itself. In computer-science theory, it generalises recursion, abstracting its implementation, and thereby separating it from the actual work of the function in question. This is applicable in languages that support Lambda-Calculus functions Y-Combinator @matyo91 25-04-2023 @matyo91
We can apply functions to each others by providing elements of the language itself. All derivatives of lambda calculus language is something defined in terms of this definition. Lambda Calculus @matyo91 25-04-2023 @matyo91
( λ x . x . x ) Loop = ( λ x . ( λ x . x . x ) . ( λ x . x . x ) ) Loop = ( λ x . x . x ) ( λ x . x . x ) @matyo91 @matyo91 25-04-2023 YCombinator in Lambda Calculus
) = ( λ x . x . x ) ( Y ( λ x . x . x ) ) = ( λ x . x . x ) ( λ x . x . x ) ( Y ( λ x . x . x ) ) @matyo91 @matyo91 25-04-2023 YCombinator in Lambda Calculus