How do you deal with lambdas in boo? Is ‘callable’ the same thing? How do you define a method that takes a lambda as a parameter?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Boo does support lambda expression syntax:
In this example,
foois a function that accepts a number x and returns x + 2. So callingfoo(5)returns the number 7.TakeLambdais a function that acceptsfooand evaluates it at 10.