In programming language theory,a lambda function is a function defined, and possibly called, without being bound to an identifier.

learn more… | top users | synonyms

4
votes
0answers
33 views

python lambda function mutability [duplicate]

I've tried the following code in the python interpreter: >>> def say(n): ... print n ... >>> say(12) 12 >>> test = [] >>> for each in range(30): ... ...
3
votes
2answers
122 views

How to capture variable number of arguments in lambda function

I tried the following code but doesn't compile. template <class T, class... A> void tpool::enqueue(T&& func, A&&... args) { std::function<void()> task([func, args] () ...
3
votes
1answer
69 views

Php - understanding create_function() - passing simple variable

First time I am trying to use the dynamic create_function, and up to now, not much success :-) My function is this : function o99_brsa_custom_widgets() { global $wp_meta_boxes; ...
0
votes
1answer
29 views

Lambda Expression error when trying to call it

I want use a Lambda Expression but get an error which occurs on the line commented below, when I try to call it. using System; using System.Collections.Generic; using System.Linq; ...
4
votes
5answers
144 views

Is polymorphism in C# so polymorphic as could be?

I wonder, how is C# polymorphic? If we base on the definition of the word: polymorphism ( ...polymorphism in the context of object-oriented programming, is the ability to create a variable, a ...
1
vote
0answers
47 views

PHP Hacky code with nested functions needs correction

Hey guys I have some seriously hacky code going on with a nested function, but I cannot get it to work for some reason with either closures or lambda functions, which I would assume would be ...
1
vote
1answer
66 views

Python and lambda functions [duplicate]

Might seems like a nooby question (myabe it is), but why does python behave like that: >>>a = [] >>>for i in xrange(5): ... a.append(lambda: i + 1) >>>a[0]() 5 ...
1
vote
2answers
51 views

C#: Convert a generic function to a Func object

I have the following function: private int GetEnumTypeUnderlyingId<T>() { return (int)Enum.Parse(typeof(T), Enum.GetName(typeof(T), _franchise.LogonDialog)); } I ...
0
votes
0answers
30 views

How to update the record in linq

I will be having the records for the rows. The records will be like rowid rowname 1 first 1 second 2 third 3 fourth 3 fifth 4 sixth 5 ...
2
votes
1answer
120 views

Select multiple table with Linq to Sql

I have two tables. There is one-to-many relationship between these tables.I want to select Company table and BankAccount List table (for appropriate CompanyID). How can I do it with Linq-to-Sql? ...
0
votes
0answers
63 views

Predicatebuilder group and or queries with inner outer

I've got a pretty straightforward predicate builder query that works well. We have a list of keywords to search on, and we loop through those keywords to see if any of our object properties match up. ...
2
votes
3answers
88 views

How to rewrite `let*` in terms of `lambda`?

I understand how (let ((x v1) (y v2)) e) can be rewritten as ((lambda (x y) e) v1 v2). But I'm not too familiar with let*. How can we rewrite (let* ((x v1) (y v2) (z v3)) e) in terms of lambda and ...
2
votes
2answers
78 views

Selecting elements from array according to indices specified in another array c#

Suppose we have an array with data: double[] x = new double[N] {x_1, ..., x_N}; And array of size N containing labels corresponding to the elements of x: int[] ind = new int[N] {i_1, ..., i_N}; ...
0
votes
1answer
42 views

How to compare array of elements with the linq query result in c#

How can i compare array of elements with the linq query. I will pass array of elements to the controller and i want to compare and display the records that only contains the passed elements. I will ...
5
votes
1answer
81 views

Type inference on nested generic functions

I've searched a bit about type inference, but I can't seem to apply any of the solutions to my particular problem. I'm doing a lot of work with building and passing around functions. This seems to me ...
10
votes
2answers
1k views

Passing and storing lambda function as callbacks

I was wondering if this would be an accepted approach to writing callbacks: Storing callbacks: struct EventHolder { std::function<void()> Callback; EventTypes::EventType Type; }; ...
0
votes
0answers
44 views

Updating a Variable also Updates item in Object List<>

Below is the code in which i am trying to get an item from the list into the variable "timetableDetail" timetableDetail = (From ttdItem In ITempTimeTableDetailItem ...
4
votes
1answer
156 views

Lambda function as a default argument for std::function in constructor

I'd like to have a default functor for a functor parameter in the constructor of a class. As a minimal example I came up with a class which should server as a filter, which filters elements of type T ...
0
votes
3answers
45 views

How to closure test in PHP

What's the correct way to find if an object is anonymous function? if (is_object($value) and method_exists($value, '__invoke')) $value(); 1000000 iterations, time: 3.27 s, or if ...
0
votes
1answer
43 views

How to decide on runtime whether to use ´for´ or ´parfor´ loop in matlab and why the differences between both of them are minor?

I am trying to test the effect of parfor compared to for in matlab, I built simple function calculates π : here is the function with the parfor: function [calc_pi,epsilon] = calcPi(max) format ...
2
votes
1answer
88 views

Lambda Expression for “not in”?

well i have a collection as it detailcollection which every detail have code,price,name now i have a string with some codes string codes="1,2,3" i know i can get a array using split string[] ...
1
vote
2answers
119 views

C# Lambda Functions: returning data

Am I missing something or is it not possible to return a value from a lambda function such as.. Object test = () => { return new Object(); }; or string test = () => { return "hello"; }; I ...
4
votes
5answers
178 views

How can I create dynamic Lambda Expressions

I have a question, how do I add another filter and this I have to validate that was selected? private Expression < Func < Entity.Modelos.Flux, bool >> Filter() { var dateStart = ...
0
votes
1answer
85 views

std::bind inside of a class, general concept of an event system

I'm working on a library that's based upon a simple event-system. For work with GUI elements ("controls"), these are needed a lot. For example, the Window class has got a bunch of events, like ...
6
votes
3answers
116 views

Python lambda function to calculate factorial of a number

I have just started learning python. I came across lambda functions. On one of the problems, the author asked to write a one liner lambda function for factorial of a number. This is the solution ...
0
votes
2answers
59 views

foldr confusion

I execute this statement on the interpreter foldr (\x (a, b) -> if x == '_' then (a+1, [((div a 3), (mod a 3))] ++ b) else (a, b)) (0, []) "_______OX" I expected the output to be ...
1
vote
1answer
88 views

Get from SourceB any element with an ID in SourceA

I have been trying to build what may seem like a strange joining method for two models in two different DB, you can query first one and then return small list of id's to search in another db. ...
0
votes
3answers
191 views

What's the meaning of [=](…){…} in C++? [duplicate]

What is the effect of this statement: std::replace_if(ln.begin(),ln.end(),[=](int c){return c=='\n'||c==' ';},0); Specifically, I'd like to know: What's the meaning of [=](int c){return ...
0
votes
1answer
166 views

Finding out lambda calculus/haskell type of some example

Suppose that the function gets as its input two variables of different types (e.g. one variable is int in the language of C, and one variable is char in the language of C) and returns one variable ...
-4
votes
4answers
167 views

Understanding how lambda expression works [closed]

Regex regex = new Regex("^[a-zA-Z0-9,-_ ]{2,12}$"); return panel1.Controls.OfType<UserControl1>() .Select(uc => uc.comboBox2).Any(cb => cb.Text == String.Empty); as the code ...
0
votes
5answers
86 views

using lambda to verify all elements in list

i have a list of foods called "my_foods". i would like to use a lambda function to verify that all elements from the list "good_foods" appear in the list "my_foods", and also verify that none of the ...
1
vote
3answers
91 views

Will closures in Java 8 enable factory methods using constructor pointers?

My least favorite aspect of the Factory method pattern is the almost unavoidable necessity of lengthy if/then or case statements. If you have many classes to resolve, it becomes even worse. I just ...
1
vote
1answer
81 views

Find a normal form using beta reduction

Given the following expression : ((λx.λx.xx) (λx.xzx)) (λy.yy) I want to find its normal form using beta reduction. My calculation : ((λx.λx.xx) (λx.xzx)) (λy.yy) -> ((λx.xzx)(λx.xzx)) ...
0
votes
1answer
16 views

Trouble setting up closures for class methods

I am architecting out a class and so far have something roughly like the following in main.php $coolObject = new CoolObject(true); foreach($array as $key=>$val) { ...
1
vote
1answer
139 views

Lambda expression error in MVC4

Firstly I would like to apologize to you all because I know that this question has been asked a whole bunch of times. But I dont know much about MVC or .NET or Lambda expressions per se. I am working ...
1
vote
2answers
90 views

Pseudo first class functions in Java?

Below I have a rough implementation of testing a list lambda functions on an integer in Python. I know Java currently doesn't support closures or lambdas (yet), but I'm curious, is this remotely ...
0
votes
1answer
82 views

Passing parameters to a slot function using lambda

#!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore class Example(QtGui.QMainWindow): def __init__(self): super(Example, self).__init__(); ...
0
votes
3answers
205 views

EF5 + Using the 'LIKE' operator inside a Lambda Expression

In my Entity (Sale) has a type of DateTime column Date. I used following lambda expression to get the latest TrNo from that table. But always it gives me Null. Because it also compares the Time part ...
-3
votes
1answer
39 views

How to get arguments names in a list and create in lambda python?

argsneeded = ["dividend","divisor"] lambda ?????: a/b What should I put in the ????s? I'm creating a record and replay tool 4 python, argsneeded is an arbitrary list gained by sys.traceit to get ...
21
votes
1answer
1k views

Can lambda functions be recursive? [duplicate]

Possible Duplicate: Recursive lambda functions in c++0x Here is a plain old recursive function: int fak(int n) { return (n <= 1) ? 1 : n * fak(n - 1); } How would I write such a ...
0
votes
1answer
55 views

Is there a way to search two different collection and fill another collection using LINQ?

I have two different collections like below public class Student { public int StudentID { get; set; } public string FirstName { get; set; } public string LastName { get; set; } } ...
5
votes
1answer
204 views

Passing an element to a lambda by reference-to-const

Inside an algorithm, I want to create a lambda that accepts an element by reference-to-const: template<typename Iterator> void solve_world_hunger(Iterator it) { auto lambda = [](const ...
2
votes
2answers
84 views

Linq - drill down with find

I am completely new to linq and need help. These are my poco classes: public class User { public User() { this.Profiles = new List<Profile>(); } public Guid ID { get; set; } ...
2
votes
3answers
68 views

LINQ query help: searching for data in a Many to Many using Entity Framework

I've poked around and seen a bunch of similar questions, but I still can't figure this out. I've got two classes Assets and Tags. Here are their definitions: public class Asset { [Key] public ...
11
votes
2answers
191 views

JDK8 lambdas to begin with conceived as no true closures? [closed]

I had a look at JDK8 lambdas recently and discovered that the old problem with variables handed over from the outer context into an anonymous class still exists with JDK8 lambdas (the var then has to ...
0
votes
2answers
95 views

Using a template Lambda expression inside a std::accumulate c++?

Is there to templatize the "ints" in the lambda function below in the case that there was a standard container of doubles or floats, etc.? I have searched the world over for help with this. I even ...
1
vote
2answers
55 views

Lambdas and sums Python

def summation(calc_termo, linf, prox, lsup): soma = 0 while linf <= lsup: soma = soma + calc_termo(linf) linf = prox(linf) return soma summation(lambda x: ...
0
votes
0answers
83 views

Parallel for: not the same result on my computer and ideone? [duplicate]

Possible Duplicate: A parallel for using std::thread? Consider the following code that implements a parallel_for: // parallel_for.cpp // compilation: g++ -O3 -std=c++0x parallel_for.cpp -o ...
3
votes
1answer
84 views

Hello world with Expression Trees

I am trying to get to grips with Expression Trees. I thought I'd start by writing a simple helloWorld function that creates a StringBuilder, appends "Helloworld", and then outputs the string. This is ...
4
votes
2answers
331 views

Using arrow functions in TypeScript: how to make them class methods?

I'm fairly experienced programming but quite new to TypeScript. Trying to use it with jQuery and immediately ran into the 'this' issue with callbacks (such as $(document).ready. Using $.proxy() is ...

1 2 3 4 5