简体   繁体   中英

Arguments in lambda expressions

In a book I encountered the following lambda expression

(λabc.cba)zz(λwv.w)

How should I interpret the arguments of (λabc.cba)? Are there two arguments

(zz)(λwv.w)

or are there three arguments

(z)(z)(λwv.w)

I suspect three arguments since normally one letter is used in Mathematics to denote a variable (unlike from in programming).

Are there two arguments or are there three arguments?

Three arguments

If don't explicit add parentheses to zz as (zz) , the application associate to the left as below:

( ( (λabc.cba) z) z) (λwv.w)

It is equivalent to take three arguments.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM