Anonymous functions or closures in programming languages such as Lisp, C#, C++ or Python. (Also, lambda expression.)

learn more… | top users | synonyms (1)

0
votes
0answers
15 views

Lambdas and type inference

I'm having a bit of trouble understanding the reason behind why the following code is giving me an error: var funs = Enumerable.Range(0, 10).Select(x => (int y) => x + y); foreach (var fun in ...
0
votes
2answers
44 views

How to pass a parameter in a lambda function in python?

I want to set colors of an object, and don't want to create 10 functions for every color. So, I just want to declare the colors and create 10 buttons and one function. Error message is: ...
0
votes
2answers
41 views

Ruby's new lambda syntax?

Ruby has lambda syntax, so you can do use -> symbol a = 0 new -> { a < 5 } do puts a a += 1 end This works very well, but when I try to do this: match "/", to: -> { |e| [404, ...
1
vote
0answers
44 views

Private member functors for a C++ class

I'm writing a class where I would like to have some member methods that have some data associated with them, specifically which mechanical systems of a robot they require use of. I thought I could ...
0
votes
2answers
26 views

Python, cPickle, pickling lambda functions

I have to pickle an array of objects like this: import cPickle as pickle from numpy import sin, cos, array tmp = lambda x: sin(x)+cos(x) test = array([[tmp,tmp],[tmp,tmp]],dtype=object) pickle.dump( ...
0
votes
1answer
41 views

Lambdas vs functions+function pointers for UI events

I have a game engine which includes a built-in in-game editor. the editor is it's own class that is used only as a single object that gets instantiated when the in-game editor is invoked. I also have ...
0
votes
1answer
19 views

How to search multi keywork in linq query

i have this code in homepage CheckBox[] ch= new CheckBox[12]; ch[0] = ChkContextA; ch[1]= ChkContextB; ch[2]= ChkContextC; ch[3]= ...
3
votes
1answer
65 views

Arithmetic error with count_if()

i was experimenting with algorithm and lambdas when i came across this weird bug: #include <iostream> #include <vector> #include <algorithm> using namespace std; int main(int ...
2
votes
1answer
57 views

Why the AsQueryable following by Any leads to select without Where clasue?

I am using Entity framework 4 and I have the following piece of code: public decimal GetSchoolSuccessRate(EvaluationComparationFilter filter) { return this.GetSuccessRate(x => x.TestCampaignId ...
1
vote
2answers
49 views

Why can the c# compiler not resolve the argument types of a lambda expression in a ternary operator?

I have this code: Action<A, B> fnUpdate = (someBool) ? (a, b) => a.propOne = b : (a, b) => a.propTwo = d; Why can the compiler not resolve the types of a and b, just because it is ...
0
votes
2answers
38 views

Expression.Equal - How to Compare Nullable and Non Nullable fields?

I have a nullable datetime field and I have to convert the string date field to a nullable datetime type (using Expression)....I did this using the below. ...
0
votes
1answer
18 views

Generating lambda expression - Type conversion Error

I have a generic method that filters a list of entities, filtering is done by generating lambda expressions: protected object initFilters<TEntity>(string targetEntity, List<SearchItem> ...
0
votes
0answers
20 views

Expression pointing to DateTime property is transformed into Convert(x.Timestamp)

I have the following code in my ASP.NET MVC application public static IHtmlString NameFor<T>(this HtmlHelper html, Expression<Func<T, object>> expression) { return ...
1
vote
1answer
56 views

Scope of string inside lambda

I have an interesting scenario in which I've built a validation checking system that maintains a series of requirements in the form List<Tuple<Func<bool>, string>> where the Func ...
0
votes
1answer
24 views

Will there be any performance or quality issues if we use lambda expression in foreach loop?

I have a piece of code as below - var serviceResponseItems = new List<ServiceResponseItems>(); foreach (var item in serviceResponse.SomeItems.Where(x => !string.IsNullOrEmpty(x.Id) ...
2
votes
1answer
44 views

Runtime creation of LINQ expression

Say I have this expression: int setsize = 20; Expression<Func<Foo, bool>> predicate = x => x.Seed % setsize == 1 || x.Seed % setsize == 4; ...
1
vote
1answer
40 views

Using nested collections of lambda expressions to create an object graph

I am interested in utilizing lambda expressions to create a tree of property selectors. The usage scenario is that we have some code that does some recursive reflection on an object graph, and to ...
0
votes
2answers
41 views

Python — confused by numpy's piecewise function

I'm trying to implement a piecewise function in Python. Since I'm using quite a few tools from numpy, I simply import everything from it (i.e. from numpy import *). My piecewise function is defined as ...
0
votes
4answers
29 views

python lambda function of 0 arity

is it possible to write the following using Python's lambda notation? def no(): return the closest i can without a sytax error is no = lambda _: no which has the following property: >>> ...
4
votes
2answers
62 views

Using noexcept as a lambda modifier or parameter constraint

Can the noexcept modifier be applied to a lambda expression? If so, how? Can noexcept be made a constraint on a function argument? For example, something like in the following code, where the meaning ...
1
vote
1answer
33 views

Any way to know when a variable has been closed over?

So closures in C# are awesome, and expressive and great. Except when they aren't (in particular when you don't mean to close a value over). Are there any tricks, (programming or IDE) to determine when ...
0
votes
3answers
39 views

Assign variable to local scope of function in Python

I'd like to assign a variable to the scope of a lambda that is called several times. Each time with a new instance of the variable. How do I do that? f = lambda x: x + var.x - var.y # Code needed ...
0
votes
1answer
34 views

will lambda func be 'cached'/remembered [duplicate]

map( lambda x: len(x), aLotOfData) I am writing some code similar to above, will it actually be slower if I put in the lambda def in the same line? or I should assign to to a variable f to avoid ...
2
votes
5answers
75 views

Remove items from list<a> AND list<b> when a.Foo == b.Bar

I'm looking for an elegant way of comparing 2 different List<> collections and removing the items in which a specific field value matches. For example: Customer object class Customer { ...
2
votes
1answer
25 views

when calling instance_eval(&lambda) to pass current context got error 'wrong number of arguments'

To be clear - this code is running perfectly - code with proc but if instead I change Proc.new to lambda, I'm getting an error ArgumentError: wrong number of arguments (1 for 0) May be this is ...
4
votes
2answers
59 views

Dynamically evaluating a property string with Expressions

How do I build an expression that will fulfill the following goal: public object Eval(object rootObj, string propertyString) eg: Eval(person, "Address.ZipCode") => return person.Address.ZipCode ...
1
vote
1answer
50 views

Can I override toString method of functional interface in JDK8 using lambdas

Can I override toString method of functional interface? Or rephrase. Is there elegant way to change anonymous inner class that implements functional interface and overrides toString method with ...
0
votes
3answers
73 views

How to query records based on date

I have a DataTable with 5 columns with type of int, string and DateTime. I have written a LINQ query to filter records by date. How do I get records by today and yesterday? var Data = ...
0
votes
1answer
31 views

Sort a collection using linq or lambda expression and assign to collection

I have to sort a collection based on sort-order field from another collection. I did it the following way. var objresult = from err in ibusSoftErrors.iclbEmployerError ...
0
votes
1answer
35 views

Linq to Sql First() Not work

This : DbModal.SM_SYS_Globals.First(x => x.ObjectValue.Contains("To")) Has Error : Expression cannot contain lambda expressions
1
vote
3answers
32 views

Marshal::GetFunctionPointerForDelegate: should I release its result?

I'm converting a managed System.Action to an unmanaged std::function inside a C++/CLI project; should I release the given IntPtr after using the callback, or is it unnecessary? void ...
0
votes
1answer
44 views

C# Count occurrences in list

I have a type Card with an int property called Value where Ace = 14, Five = 5, etc. If I have a list of Cards (5), ie. a hand. What I would like to do is count the number cards where the Value is ...
1
vote
1answer
58 views

c# - Returning default values for null properties, when the parent of these properties can or can not be null

So I didn't find any elegant solution for this, either googling or throughout stackoverflow. I guess that I have a very specific situation in my hands, anyway here it goes: I have a object structure, ...
1
vote
2answers
65 views

Creating Extension method to include subquery

I am having trouble creating an extension method for an IQueryable that will include the translation for a specified column in a Linq Query. Suppose i have the query below. I would like to call a ...
1
vote
1answer
29 views

Explanation of Code - I think it's Lambda expression

It's been long since i have been a programmer but i sometimes i just ask stupid questions. I have not some new techniques which make me pretty old fashioned programmer. For example the following code, ...
0
votes
1answer
35 views

In a function with two lambdas, when used with .call, how come only the last lambda is evaluated? (ruby clojures)

In the following code, I was reading on closures, but wondered what would happen if there was more than one proc object in the function. So when the function was .called, only the last lambda was ...
10
votes
2answers
170 views

How to overload constructors on signature of a std::function?

I'm trying to write a class with overloaded constructors that accept std::function objects as parameters, but of course every damn thing can be implicitly cast to a std::function of any signature. ...
2
votes
2answers
98 views

Haskell: Using RankNTypes to fold a record constructor

import Data.ConfigFile data Test = Test { field1 :: Int , field2 :: Bool , field3 :: String } deriving (Show) whatMyConfigLooksLike = [ ("field1", "5") , ("field2", "True") , ...
0
votes
1answer
29 views

Make a new generic list from a list within a list in Linq with lamda expressions?

Okay so I have a POCO class that may contain another POCO class as an array. In some instances when I get the data I want to CREATE a list of the lists but not as a level down but all on the same ...
0
votes
2answers
63 views

How to get array indexes using lambda expression

I was trying to create a string joining elements of an integer array: string.Join(", ", integerArray.Select(p => p.ToString()).ToArray()) This way I get something like this: 1, 2, 3, 4. Now I'd ...
0
votes
1answer
23 views

Querying MongoDB with List of IDs using Lambda Expression

I'm hoping someone can help me: I'm using an interface to access my data, the Find method is: public IQueryable<T> Find<T>(Expression<Func<T, bool>> expression) where T : ...
0
votes
1answer
30 views

Filtering one IQueryable List with another

I have two lists as below: var processedOrders = this._requestReviewRecordService.GetAll().ToList(); var orders = _orderRepository.Table.Where(o => o.OrderStatusId == (int)OrderStatus.Complete ...
0
votes
1answer
43 views

simplify this python generation

I am new to python. Is there a way to simplify this: def getDivs(): divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True) for div in divs: h2 = ...
1
vote
1answer
77 views

Call Contains() method in LINQ to Entities Expression on a type other than String

I am trying to implement searching/filtering in a grid that allows the user to create filter conditions that involve a column, an operation, and a value. Example: Column1 Contains "somevalue" The ...
0
votes
1answer
34 views

How do I find delegates, anonymous methods and lambda expressions in my code?

I like Edit-and-Continue very much, so much that I want to find all kinds of things that prevent it from working and move them away into separate methods, change to regular methods or something. ...
-1
votes
0answers
27 views

Lambda expression Fetch and Count with a where clause

i have these lines: model.Total = RecommendedUserRepository.Count(x => x.RecommendedByUser.Customer.CustomerId == customerId); model.RecommendedUsers = RecommendedUserRepository.Fetch(x => ...
0
votes
4answers
47 views

Comparing two list C#

I have entity which is as follows public class A { public virtual int Id { get; set; } public virtual string AccountName { get; set; } public virtual string AccountId { get; set; } ...
-4
votes
1answer
39 views

convert for loop to the Linq lambda

how i can convert this loop to the Linq lambda . I have define a dictionary var dictionary = new Dictionary<int, string>(); dictionary.Add(1,"Test"); ...
1
vote
3answers
97 views

Linq query filter by date (Month and year)

public class content { public int Id { get; set; } public string name { get; set; } public DateTime date { get; set; } } Id name date 1 content1 01/01/2013 2 content2 ...
1
vote
1answer
32 views

how to create a macro in racket where a list becomes the args of said lambda?

How would I go about in doing a define-syntax-rule that accepts a list as arguments and a list (or a quote, in case it is a single element) as body of a lambda? i would like to do something like: ...

1 2 3 4 5 93