1
vote
2answers
88 views
How does this max() expression in Python work?
Here's the code:
a = [1,2,3,4]
b = {}
b[1] = 10
b[2] = 8
b[3] = 7
b[4] = 5
print max(a,key=lambda w: b[w])
This prints out 1.
I don't understand how max(a,key=lambda w: b[w]) is being evaluated …
11
votes
4answers
174 views
What use is lambda in PHP?
The lambda anonymous function is part of PHP 5.3. What use is it? Are there some things that one can only do with lambda? Is lambda better certain for some tasks?
I've seen the Fibonacci example, …
1
vote
5answers
59 views
convert a list of objects from one type to another using lambda expression
I have a foreach loop reading a list of objects of one type and producing a list of objects of a different type. I was told that a lambda expression can achieve the same result.
var origList = …
0
votes
2answers
51 views
Lambda Tutorial and Solving a Lambda-Function
Is it possible to shorten the following function to a lambda expression?
Or (to do the trick by myself) what is the best and most understandable for beginners tutorial for lambda in vb.net?
Function …
0
votes
2answers
158 views
What is a “lambda” ? [closed]
Possible Duplicate:
What is this ‘Lambda’ everyone keeps speaking of
Hi there,
I often heard the word lambda but I never get used to it or what it does.
I SO'ed, googled, looked …
1
vote
6answers
102 views
call a function for each value in a generic c# collection
I have a collection of integer values in a List collection.
I want to call a function for each value in the collection where one of the function's argument is a collection value.
Without doing this …
3
votes
4answers
86 views
Corner case in using lambdas expression in base constructor
In the Framework we are building we need the following pattern:
public class BaseRenderer
{
Func<string> renderer;
public BaseRenderer(Func<string> renderer)
{
…
1
vote
5answers
57 views
How to make a list of arrays, not their symbols, in Lisp?
I'm trying to make a function to get a delta between arrays, but right now just want to make a subset: get Nth element.
(defvar p1 #(1 2))
(defvar p2 #(3 4))
(mapcar '(lambda (x) (aref x 0)) '(p1 …
1
vote
1answer
44 views
Deleting key/value from list of dictionaries using lambda and map
I have a list of dictionaries that have the same keys within eg:
[{k1:'foo', k2:'bar', k3...k4....}, {k1:'foo2', k2:'bar2', k3...k4....}, ....]
I'm trying to delete k1 from all dictionaries within …
2
votes
1answer
61 views
Setting numpy slice in lambda function
I want to create a lambda function that takes two numpy arrays and sets a slice of the first to the second and returns the newly set numpy array.
Considering you can't assign things in lambda …
0
votes
2answers
56 views
Limit collection by enum using lambda
I have a collection of objects. One of the properties is "Type" which is an enum. I want to limit the collection by "type" using a lambda and haven't quite figured out how to do it.
Ideas?
3
votes
3answers
56 views
Defining event handlers
I can define an event like this(declared function):
MyElement.Keyup +=MyDeclaredFunction
I can also define it like this(anonymous delegate):
MyElement.Keyup+=new delegate(object sender, eventargs …
0
votes
4answers
93 views
How to re-write this inner join subquery from SQL to Lambda
SELECT ulcch.ID, ulcch.UserLoginHistoryID, ulcch.StatusID,
ulcch.ClientModuleID, ulcch.DeviceState, ulcch.UpdatedAt, ulcch.CreatedAt
FROM UserLoginClientConnectionHistory AS ulcch INNER …
1
vote
3answers
103 views
How can I make this lambda work?
I have this code:
String temp = txtForm.Rtf;
foreach (ReplaceStrut rs in replaceArray) {
temp = temp.Replace(rs.getNeedle(), rs.getReplacement());
}
if …
2
votes
4answers
84 views
returning a lambda function in clisp, then evaluating it
Suppose I have this wonderful function foo
[92]> (defun foo () (lambda() 42))
FOO
[93]> (foo)
#<FUNCTION :LAMBDA NIL 42>
[94]>
Now, suppose I want to actually use foo and return 42.
…
