Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
3answers
3k views

'Delegate 'System.Action' does not take 0 arguments.' Is this a C# compiler bug (lambdas + two projects)?

Consider the code below. Looks like perfectly valid C# code right? //Project B using System; public delegate void ActionSurrogate(Action addEvent); //public delegate void ActionSurrogate2(); // Using ...
15
votes
3answers
250 views

static variables in lambda function objects

Are static variables used in a lambda retained across calls of the function wherein the lambda is used? Or is the function object "created" again each function call? Useless Example: #include ...
11
votes
2answers
433 views

Can currying be used with lambda functions?

This piece of code fails to compile and I don't know if it is because it can not be done, lambdas do not inherit from binary_function, or it is just that I'm getting the syntax wrong #include ...
10
votes
4answers
506 views

Using auto in a lambda function

#include <vector> #include <algorithm> void foo( int ) { } int main() { std::vector< int > v( { 1,2,3 } ); std::for_each( v.begin(), v.end(), []( auto it ) { foo( it+5 ); } ); ...
10
votes
2answers
396 views

C++0x: Capture By Value for Lambda, always a copy?

Is the compiler allowed to eliminate the copy that is required for the by-value capture? vector<Image> movie1; apply( [=movie1](){ return movie1.size(); } ); Is there any circumstance that ...
9
votes
1answer
165 views

Lifetime of lambda objects in relation to function pointer conversion

Following this answer I'm now wondering what the rules are for the lifetime of lambdas and how the relate to the lifetime of function pointers which are created by automatic conversion. There are ...
9
votes
2answers
351 views

Lambda Expressions

A point from ISO draft n3290 section 5.1.2 paragraph, point 19: The closure type associated with a lambda-expression has a deleted (8.4.3) default constructor and a deleted copy assignment ...
9
votes
4answers
355 views

How can I get object instance from ()=>foo.Title expression

I have a simple class with a property class Foo { string Title { get; set; } } I am trying to simplify data binding by calling a function like BindToText(titleTextBox, ()=>foo.Title ); ...
8
votes
3answers
368 views

Strange C++ syntax

I have 8 years of coding experience, but I have never seen the operator [] passed as a parameter to the function definition. For example, the following code (from an open source project): ...
8
votes
1answer
357 views

Set PHP version in Netbeans 7 for non-project files

I'm editing a PHP file in Netbeans that is not part of a project. Although I have PHP 5.3 installed, Netbeans complains about my use of a lambda function: "Language feature not compatible with PHP ...
8
votes
4answers
747 views

Can I use a lambda function or std::function object in place of a function pointer?

I've got a library that I need to use that defines the following: typedef void CallbackFunction(const int& i); and has a function to register your callback that looks like: void ...
8
votes
2answers
1k views

Ruby: Can lambda function parameters have default values?

I want to do something similar to this: def creator() return lambda { |arg1, arg2 = nil| puts arg1 if(arg2 != nil) puts arg2 ...
7
votes
3answers
179 views

C# Get the name of a method using an expression

I know there are a few answers on the site on this and i apologize if this is in any way duplicate, but all of the ones I found does not do what I am trying to do. I am trying to specify method info ...
7
votes
3answers
206 views

C++ std::function cannot find correct overload

Consider the following case: void Set(const std::function<void(int)> &fn); void Set(const std::function<void(int, int)> &fn); Now calling the function with Set([](int a) { ...
6
votes
5answers
159 views

Haskell: where clause referencing bound variables in lambda

I am trying to numerically integrate a function in Haskell using the trapezoidal rule, returning an anti-derivative which takes arguments a, b, for the endpoints of the interval to be integrated. ...
6
votes
3answers
169 views

Recursing in a lambda function

I have the following 2 functions that I wish to combine into one: (defun fib (n) (if (= n 0) 0 (fib-r n 0 1))) (defun fib-r (n a b) (if (= n 1) b (fib-r (- n 1) b (+ a b)))) I would like to ...
6
votes
14answers
507 views

How to make an anonymous function in Python without Christening it?

Is it possible to put a function in a data structure, without first giving it a name with def? # This is the behaviour I want. Prints "hi". def myprint(msg): print msg f_list = [ myprint ] ...
6
votes
1answer
511 views

C++11 Lambda Functions inside member methods inherit scope

I've written a function foreach that accepts a lambda function ala: void foreach(void (*p)(pNode)) { /* ... */ } Which works as intended if I pass a lambda function from the main loop: int a = 5; ...
5
votes
3answers
87 views

Inner functions dealing with variables from the scope

I have a snippet of code like this: std::list<boost::shared_ptr<Point> > left, right; // ... fill lists ... // now, calculate the angle between (right[0], right[1]) and (right[0], ...
5
votes
1answer
125 views

Syntax error in template class with lambda expression

I have the following simplified scenario: template< typename T> struct A { A() : action_( [&]( const T& t) { }) {} private: boost::function< void( const T& )> action_; ...
5
votes
2answers
283 views

Are lambda functions faster than delegates/anonymous functions?

I assumed lambda functions, delegates and anonymous functions with the same body would have the same "speed", however, running the following simple program: static void Main(string[] args) { ...
5
votes
1answer
161 views

Is constexpr supported with lambda functions / expressions?

struct Test { static const int value = []() -> int { return 0; } (); }; With gcc-4.6 I get something like, error: function needs to be constexpr. I have tried multiple combinations of putting ...
5
votes
3answers
226 views

Is there some trick to use 'out' parameters inside lambda function?

if ( (new Func</*out*/ string, bool>( (/*out*/ string uname) => .... more details : that is a part of login function and I just want that my lambda function to changes login-name user with ...
5
votes
1answer
434 views

Why is param in this lambda expression?

The MSDN magazine article by Josh Smith on MVVM contains a lambda expression I don't completely understand. What is the purpose of param in this code? _saveCommand = new RelayCommand(param => ...
4
votes
7answers
168 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 ...
4
votes
1answer
112 views

parameterized lambda-expression as a default function argument

Refering to the C++11 specification (5.1.2.13): A lambda-expression appearing in a default argument shall not implicitly or explicitly capture any entity. [ Example: void f2() { int i = ...
4
votes
2answers
225 views

Complex Scala Type Inference w/ Lambda Expressions

I'm working on a DSL for a experimental library I'm building in Scala, and I've run into some vexing peculiarities of Scala's type inference as it pertains to lambda expression arguments that don't ...
4
votes
5answers
105 views

Is there any use case for class inside function after introduction of lambda?

From the wikipedia article about Lambda functions and expressions: users will often wish to define predicate functions near the place where they make the algorithm function call. The language ...
4
votes
2answers
130 views

Lambda expressions : n3290 draft

A point from n3290 ISO draft: Lambda expressions : section 5.1.2, para 6: "The closure type for a lambda-expression with no lambda-capture has a public non-virtual non-explicit const ...
4
votes
1answer
219 views

Nested lambda captures

When accessing variable a inside "run" lambda, I observe the address to be different than the 'a' in main. This is only happening with this kind of lambda nesting. Is this to be expected? I can only ...
4
votes
2answers
223 views

Elegant porting of lambda expressions in C++

Since lambda expressions require GCC version > 4.4: what is the most elegant or fastest (yet not too 'dirty') way of porting code containing a couple of lambda expressions with reference-bound ...
4
votes
3answers
141 views

Calling/applying lambda vs. function call - the syntax in Ruby is different. Why?

I am kinda new to Ruby and still trying to understand some of the language design principles. IF I've got it right, the lambda expression call in Ruby must be with square braces, while the "regular" ...
4
votes
4answers
183 views

A problem with higher order functions and lambdas in C++0x

I have a program where I must print many STL vectors on the screen after doing some calculation on each component. So I tried to create a function like this: template <typename a> void ...
4
votes
3answers
326 views

C++ lambda expression does not compile

I am trying to cin a loop index's value in the loop itself using lambda expression: #include<iostream> using namespace std; int main(){ for(int a, ([](int & b){cin>>b;})(a); a < ...
4
votes
1answer
102 views

Linq - Merging property accessor expressions

I have a MemberExpression that contains the following: mail => mail.SomeProperty. I want to generate a new member expression to access one level deeper in the hierarchy and have some result like ...
4
votes
1answer
172 views

What is lifetime of lambda-derived implicit functors in C++?

The question is simple: what is lifetime of that functor object that is automatically generated for me by the C++ compiler when I write a lambda-expression? I did a quick search, but couldn't find a ...
4
votes
2answers
165 views

What is the Pythonic way of reordering a list consisting of dicts?

I have the the following list: list = [{'nr' : 2, 'name': 'streamname'}, {'nr' : 3,'name': 'streamname'}, {'nr' : 1, 'name': 'streamname'}] So how would I reorder it to become like this in an ...
4
votes
1answer
616 views

Executing DynamicExpression with unknown types

If anyone is very familar with the Linq.Dynamic namespace I could use some help -- couldn't find any indepth resources on the internet. Basically I'm using DynamicExpression.ParseLambda to create an ...
3
votes
2answers
42 views

Lambda function index

I noticed that whenever I use create_function a name is assigned to the function that looks like: lambda_N What's weird is that if I refresh the page that N increases, like lambda_2, lambda_3 etc. ...
3
votes
1answer
65 views

Can I immediately evaluate an anonymous function? [closed]

Possible Duplicate: Immediately executing anonymous functions I want to immediately evaluate an anonymous function rather than it appearing as a Closure object in method args. Is this ...
3
votes
1answer
143 views

Combining expression with operator &&

I have class that works a bit like the Linq To Sql Where clause. It builds a sequence of operations from an Expression tree. The expression tree is an Expression<Func<bool>> (i.e. a ...
3
votes
1answer
147 views

How to create custom filter toolbar html helper in mvc3

I'm strugling on this for quite a while now. I need to create a custom mvc3 html helper for easy filter and toolbar management. All that helper should look something like this below or something ...
3
votes
4answers
131 views

Is the use of .Net Lazy class an overkill in this case?

I learned about Lazy class in .Net recently and have been probably over-using it. I have an example below where things could have been evaluated in an eager fashion, but that would result in repeating ...
3
votes
1answer
149 views

Custom Helper in Asp.net mvc3

I have an ASP.NET MVC3 application. I would like to have a custom toolbar that I want to display in every form. This custom toolbar can have one or many action links.So, I need to develop a Custom ...
3
votes
3answers
186 views

How to force my lambda expressions to evaluate early? Fix lambda expression weirdness?

I have written the following C# code: _locationsByRegion = new Dictionary<string, IEnumerable<string>>(); foreach (string regionId in regionIds) { IEnumerable<string> ...
3
votes
4answers
136 views

Lambda expression not working in setting the event-handler of some controls

I'm creating an array of controls and adding them to the form, and setting their events to a function that receives the index of the clicked button using a lambda expression (b.Click += (sender, e) ...
3
votes
4answers
109 views

How do I prepend every item in a list of strings in C# with a Lambda Expression

I found a VB version of this here, but I'd like to use a Lambda Expression to take a List of strings and then prepend a string onto every item in the list. It seems like using the ForEach ends up ...
3
votes
3answers
136 views

C# Func<> and extension methods question

I have seen someone write below kind of Func<> pattern. And I am trying to experiment with Funcs and Lambdas to get the concepts right. so ExperimentalSelect returns a Func (with 2 args and bool ...
3
votes
2answers
78 views

Dynamically Generating Buttons that Call a Lambda Function — Variable Scope

I have a situation where I have someFunction(int), and I need to generate programmatically n buttons that will call it. What this means is that I want to create buttons B1, B2, ... Bn that call ...
3
votes
2answers
509 views

Using function objects in parallel_for

I just barely learned how to use a function in parallel. The following line of code calculates the square value of an index and places it in an array (called squares) at that index. The parallel_for ...

1 2 3