0
votes
3answers
84 views
Convert Python to Haskell / Lambda calculus
What is the Python code in Haskell and Lambda calculus?
def f1():
x = 77
def f2():
print x
f2
f1
My attempt in lambda calculus
\x. 77 (\x.x)
2
votes
2answers
81 views
C# lambda ref out
I'm trying to do this, but it doesn't work. Some suggestions?
int test_i = 0;
DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(test_i);
test_i <- still is 0 and not 3!!!
public void …
0
votes
1answer
14 views
subsonic ActiveRecord: Lambda Parameter not in scope.
Hi
I am trying to delete list of albums from Album table. Following is the syntax but it fails saying "Lambda Parameter not in scope"
Album.Delete(x => (ListOfIds).Contains(x.Id));
What am I missing …
2
votes
2answers
67 views
Writing my first DSL in C# and getting hung up on func<T> & Action
I'm taking a crack at writing my first DSL for a simple tool at work. I'm using the builder pattern to setup the complex parent object but am running into brick walls for building out the child …
0
votes
0answers
49 views
Creating Func<…> and Action<…> lambda support for projects targeting .NET Framework 2.0 [closed]
Place the following in a core assembly:
public delegate TResult Func<TResult>();
public delegate TResult Func<T, TResult>(T arg1);
public delegate TResult Func<T1, T2, TResult>(T1 …
0
votes
1answer
89 views
Nested Lambdas in Python
Hi,
I'm a beginning python programmer, and I'd like someone to clarify the following behavior.
I have the following code:
env = lambda id: -1
def add(id, val, myenv):
return lambda x: val if x …
0
votes
2answers
31 views
Use LINQ to omit some entries in the value part of a dictionary and project this into a new dictonary maintaing original keys.
Hi All,
I have a generic dictonary which is templated in the following manner:
Dictionary<object, IList<ISomeInterface>> dictionary1 = new Dictionary<object, …
1
vote
2answers
42 views
Get the property name from delegate i => i.Name
Hi,
is there any way in .Net 2.0 to retrieve a property name from delegate?:
i => i.Name
When I call:
var property = MyMethod(i => i.Name);
I want MyMethod to return string "Name". So the value of …
1
vote
1answer
97 views
Weak event handler model for use with lambdas
OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the …
0
votes
3answers
101 views
python reduce error?
The following is my python code:
>>> item = 1
>>> a = []
>>> a.append((1,2,3))
>>> a.append((7,2,4))
>>> sums=reduce(lambda x:abs(item-x[1]),a)
Traceback …
1
vote
2answers
45 views
How to order by multiple columns using VB.Net lambda expressions
I've done a brief search of this site, and googled this, but can't seem to find a good example. I'm still trying to get my head around the whole "Lambda Expressions" thing.
Can anyone here give me an …
3
votes
1answer
60 views
Are there any “simple” explanations of what procs and lamdbas are in Ruby?
Are there any "simple" explanations of what procs and lamdbas are in Ruby?
10
votes
8answers
430 views
When is it too much “lambda action”?
Hi everybody :)
I often find myself using lambdas as some sort of "local functions" to make my life easier with repetetive operations like those:
Func<string, string> GetText = (resource) …
2
votes
3answers
74 views
Generic List RemoveAll and lamda expressions
I'm clearly missing something here... I have a generic list of objects and I'm trying to use a lambda expression to remove items. When I use the code posted below I get the following exception.
…
0
votes
4answers
94 views
LINQ: Help with linq query and contains for an IEnumerable<string>?
Hi there,
Can anyone help?
I have a linq query which is embedded inside a extension method, it was working as v.RentalStatus was a String. I am now using a Group on my original query (the query is …
