2
votes
2answers
38 views

How to express let* as a lambda expression (not the regular let)

I have a scheme related question, how can we implement let* as a lambda expression. To be more precise, I am not wondering about the "regular" let, but the let with * which lets us use one let ...
1
vote
1answer
49 views

Simply Scheme Chapter 09. Lambda. Any more Lambda exercises?

Greets, Reading Simply Scheme Chapter 09 and from what I can see, Lambda seems important. I'd like to practice it to the bone so I'm looking for beginner exercises (preferably non recursive) vis à ...
16
votes
2answers
343 views

How does this lambda/yield/generator comprehension work?

I was looking through my codebase today and found this: def optionsToArgs(options, separator='='): kvs = [ ( "%(option)s%(separator)s%(value)s" % {'option' : ...
2
votes
3answers
139 views

C++11 lambda fuction - how to pass parameter

I used lambda function to pass it to std::condition_variable wait() function, but that is not the case. I use lambda functions that don't receive any parameters, and everything is absolutely clear for ...
4
votes
1answer
72 views

How can I simplify this methods expression parameters?

Is there anyway I can change this method to not need the object but just pass a parameter expression: protected void FillInTextFor<T>(T obj, Expression<Func<T, object>> property) { ...
1
vote
4answers
91 views

case statements in lambdas

Is it possible to incorporate case statements in a lambda? I'm trying to make a function that recursively adds two numbers recursively in Erlang with no luck. Mult = fun(X) -> (fun(Y) -> case ...
-3
votes
2answers
70 views
5
votes
1answer
246 views

Boost Lambda/Phoenix - how to do lambda which returns another lambda?

Does Boost Lambda/Phoenix supports out of box something like lambda which returns another lambda? For instance, that can be used to do some kind of currying: std::cout << [](int x){return ...
3
votes
1answer
47 views

Lambdas in Salesforce Apex

Does Apex support the concept of lambdas? Ultimately, I am trying to DRY up some really repetitive code in my tests, so I'd love to be able to pass functions around, something like this (C#-esq) ...
2
votes
1answer
90 views

How to use lambda as lexical scope in C++

The codes are like this: int a = 1; auto f = [a] {return a;}; a = 100; std::cout << f() << endl; return 0; I expected to see 100 as the result. However, the a is like freezed when ...
2
votes
1answer
156 views

Overloading on callable with callable parameter

I am trying to translate C# code like below to C++: void SomeCall(Action action) { // do things like action(); } void SomeCall(Action<Action> action) { // define some action1 // ...
6
votes
1answer
228 views

Will I be able to use Clojure functions as Lambdas in Java 8?

I use a number of libraries in Clojure that produce higher order functions that conform to the "clojure.lang.IFn" interface. It has multiple arity overloads, I.e. the interface looks something like: ...
-1
votes
2answers
124 views

What is lambda in scheme [closed]

I am VERY new to scheme. Very basic question for everyone. What is lambda in function calls I see everywhere online? What does it do? What do I lose by not using it?
2
votes
2answers
327 views

Prolog - Multiply a list with an element results with a weird tail?

I want to multiply two lists , where I take the left list and multiply it by each element of the right list . For example : multLists([3,4,2],[4,7,8],R). R = [[12,16,8],[21,28,14],[24,32,16]]. ...
2
votes
3answers
119 views

What does the use of multiple lambdas in scheme mean?

I am currently learning scheme and I came across these functions: (define t (lambda (x) (lambda (y) x))) (define f (lambda (x) (lambda (y) y))) Apparently they are representations of true and ...
7
votes
2answers
451 views

Defining a stack data structure and its main operations in lambda calculus

I'm trying to define a stack data structure in lambda calculus, using fixed point combinators. I am trying to define two operations, insertion and removal of elements, so, push and pop, but the only ...
3
votes
1answer
203 views

factorial function for Church numerals

I'm trying to implement the factorial lambda expression as described in the book Lambda-calculus, Combinators and Functional Programming The way it's described there is : fact = ...
-2
votes
1answer
107 views

Limit to Number of Nested Function Calls in Python

Just a warning, this code is ugly. I know there are better ways of doing this but this is just an exercise. I am poking around with the functional programming side of python, but I keep encountering ...
1
vote
2answers
108 views

Equivalent to Lambda Expressions in Python

A common operation I perform is joining a list of lists of letters into a list of words (strings). I normally use a list comprehension: lists_of_letters = [["m", "y"], ["d", "o", "g"], ["s", "k", ...
2
votes
4answers
123 views

Do Predicates or Actions have any additional properties or qualities which differentiate them to Funcs?

A Predicate is just a Func which returns a boolean: Predicate<T1, T2, T3, ...,Tn> = Func<T1, T2, T3, ...,Tn, bool> And an Action is just a Func which doesn't return a value: ...
1
vote
1answer
131 views

Why is LINQ not purely functional? [closed]

So, why exactly is LINQ not considered purely functional? Is it because side effects can occur? Or is it maybe because it exists in an imperative environment?
2
votes
4answers
170 views

Functional python programming and conditionals

I'm trying to write a python function in a functional way. The problem is I don't know, how to transform an if conditional into a functional style. I have two variables: A and C, which I want to ...
0
votes
0answers
304 views

How will JDK8's lambdas be integrated into Scala? [closed]

Will lambdas in the upcoming Java 8 benefit Scala which already has them? For example, will its collections adopt the lazy until sink chaining (with choice of final container) of Java's implementation ...
1
vote
0answers
157 views

Lambda functions to implement functional port of D3.JS to C++11

Would the lambda functions of C++11 be able to handle the functional aspects of D3.JS if one were to attempt a partial port to C++? What sort of functional programming and loose typing features will ...
6
votes
2answers
177 views

What is more pythonic - function composition, lambdas, or something else? [closed]

Given the example below, which is more pythonic? Using function composition, lambdas, or (now for) something completely different? I have to say that the lambdas seem to be more readable, but Guido ...
0
votes
2answers
120 views

LambdaJ: why can't we apply operation in select clause?

select(list, having(on(Integer.class).intValue() % 2, equalTo(0))); the code above throws exception.
6
votes
2answers
743 views

why do lambda functions in C++11 not have function<> types?

I am playing around with the C++0x/C++11 functional features. One thing I find odd is that the type of a lambda function is actually NOT a function<> type. What's more, lambda's do not seem to play ...
0
votes
1answer
176 views

c++ what is meant by 'retain state' ?

I read this explanations on MSDN pages, for advantages of lambda expression over functor and function pointer. What is meant by ability to 'retain state' ? Is it related to capability to capture some ...
1
vote
8answers
388 views

Lambda Expression conversion for a loop to display a list

I am trying learn the use of lambda expressions and hence still struggling to implement after even reading the documentation and other various related articles on it. So if I want to convert this ...
1
vote
3answers
279 views

Take inverse of a function in Racket

I am trying to write a higher-order Racket function that takes a first-order function of one variable and returns its inverse. I know that it has to start off something like this: (let [(inverse ...
4
votes
1answer
104 views

Eliminate lambda in Scheme?

Hi guys I need to eliminate this lambda construction for my school asignment. Any ideas how to do that? (define (foo x) (letrec ((h (lambda (y z) (cond ((null? y) 'undefined) ...
4
votes
2answers
121 views

Failing to deduce type from lambdas in the initializer list

#include <functional> #include <iostream> namespace{ //const std::function< void( const int ) > foo[] = const auto foo[] = { []( const int v ){ ...
2
votes
3answers
363 views

What does the lambda self: do

This answer explains how to create test cases dynamically. The answer's code: class Tests(unittest.TestCase):     def check(self, i, j):         self.assertNotEquals(0, i-j) for i in xrange(1, 4): ...
4
votes
5answers
172 views

Lambdas inside list comprehensions

I wanted to have a list of lambdas that act as sort of a cache to some heavy computation and noticed this: >>> [j() for j in [lambda:i for i in range(10)]] [9, 9, 9, 9, 9, 9, 9, 9, 9, 9] ...
1
vote
2answers
134 views

Using the null coalescing operator inside a higher order function

I am trying to wrap my head around whether this is possible. My hunch is that it is not but wanted to confirm. The following higher order function uses the null coalescing operator: public ...
1
vote
3answers
229 views

Python: using map() without lambdas on a multidimensional array/list

I have some code in python, that bitwise or-equals b to all the values in an a multidimensional list called a for i in xrange(len(a)): for j in xrange(len(a[i])): a[i][j] |= b My ...
4
votes
4answers
117 views

Removing numerous for loops from Javascript code

I am writing some code for a web app that regularly needs to filter down an array of javascript objects to return a subset of objects. I find that throughout my code I end up with numerous for loops. ...
1
vote
0answers
84 views

Benefit of Expression<Func<T>> over Func<T> [duplicate]

Possible Duplicate: Why would you use Expression<Func<T>> rather than Func<T>? Possibly my shortest ever SO question: What is the benefit of declaring ...
5
votes
1answer
262 views

Lambda calculus expression implementing function application

I just found the following lambda calculus expression: (((λ f . (λ x . (f x))) (λ a . a)) (λ b . b)) So that is a function that takes an argument f and returns another function that takes an ...
2
votes
2answers
2k views

Uncaught TypeError: Illegal invocation in javascript

I'm creating a lambda function that executes a second function with a concrete params.This code works in Firefox but not in Chrome, its inspector shows a weird error, Uncaught TypeError: Illegal ...
1
vote
3answers
463 views

Real world examples of partial function

I have been going through Python's partial function. I found it's interesting but it would be helpful if I can understand it with some real-world examples rather than learning it as just another ...
2
votes
3answers
348 views

How does the lambda function in lisp work?

I read in the book Land of Lisp that the lambda function is the only built-in function. However I don't really understand how that is possible because I thought you would at least need one command for ...
1
vote
0answers
115 views

Java from OOPs to functional programming way? [closed]

With inclusions of closures in JAVA is it going an FP way? Is this the time to start understanding FP methodology of programming?
4
votes
7answers
258 views

Example where lambdas are very useful in Python

I met lambda expressions in Python. I have seen already many easy examples (including examples on SE) where lambda expressions produce functions like adders of whatever but I can't see the real ...
3
votes
1answer
235 views

Implementating functional languages for the CLR (Or, papers on the implementation of F#)

Does anyone know of any good papers on the implementation of the F# compiler? I'm trying to generate CIL code for a simple functional language targeting the CLR, but I am struggling with a few ...
5
votes
3answers
177 views

How to handle lambdas in a pre-lambda compiler

I have some code that can greatly be reduced in complexity by using lambdas. However unfortunately we have to use a compiler that does not fully support C++11 and we cannot easily switch. Now the ...
1
vote
4answers
699 views

How do you write a procedure that outputs a function? (Racket)

How do you write a procedure that outputs a function? (Racket) Would the procedure output a lambda?
14
votes
5answers
421 views

lambda in python

I'm revisiting some scheme excercises in python (if that makes sense) to find out what python can do in terms of FP. My problem concerns lambda in python : Can i define a general function in python ...
3
votes
5answers
224 views

How is this familiar function implemented in C?

Consider the following code segment written in S-expr notation: (lambda (x) (lambda (y) (+ x y))) or in Javascript: function(x) { return function(y) { return x+y; }; } How do I write this in C?
6
votes
5answers
376 views

How to overload an operator for composition of functionals in C++0x?

Is there a way to overload, say the >> operator for function composition? The operator should work seamlessly on lambdas as well as std::function? Requirements: The solution should not ...

1 2