active questions tagged lambda - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:26:31Z http://stackoverflow.com/feeds/tag/lambda http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1924214/python-lambdas-and-scoping 3 Python lambdas and scoping p-static 2009-12-17T20:02:49Z 2009-12-17T20:16:43Z <p>Given this snippet of code:</p> <pre><code>funcs = [] for x in range(3): funcs.append(lambda: x) print [f() for f in funcs] </code></pre> <p>I would expect it to print <code>[0, 1, 2]</code>, but instead it prints <code>[2, 2, 2]</code>. Is there something fundamental I'm missing about how lambdas work with scope?</p> http://stackoverflow.com/questions/1911981/how-does-this-max-expression-in-python-work 1 How does this max() expression in Python work? Goose Bumper 2009-12-16T03:01:12Z 2009-12-16T12:49:34Z <p>Here's the code:</p> <pre><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]) </code></pre> <p>This prints out <code>1</code>.</p> <p>I don't understand how <code>max(a,key=lambda w: b[w])</code> is being evaluated here though; I'm guessing for each value i in a, it finds the corresponding value b[i] by</p> <ol> <li>saving the current value of i as w in the lambda function</li> <li>getting the corresponding value from b[i] and storing it in key.</li> </ol> <p>But then why does it print out 1 instead of 11? Or why doesn't it print out 10, since that's really the maximum number?</p> http://stackoverflow.com/questions/1909002/what-use-is-lambda-in-php 12 What use is lambda in PHP? unknown (google) 2009-12-15T17:21:10Z 2009-12-15T18:26:24Z <p>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? </p> <p>I've seen the Fibonacci example, and I really don't need to write Fibonacci sequences, so I'm still not sure if it's that useful for the kinds of tasks I encounter in writing webbish applications. So what does one do with it in "real life"?</p> http://stackoverflow.com/questions/1909268/convert-a-list-of-objects-from-one-type-to-another-using-lambda-expression 1 convert a list of objects from one type to another using lambda expression Stratton 2009-12-15T18:06:13Z 2009-12-15T18:12:45Z <p>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.</p> <pre><code>var origList = List&lt;OrigType&gt;(); // assume populated var targetList = List&lt;TargetType&gt;(); foreach(OrigType a in origList) { targetList.Add(new TargetType() {SomeValue = a.SomeValue}); } </code></pre> <p>Any help would be appreciated- i'm new to lambda and linq thanks, s</p> http://stackoverflow.com/questions/1852001/what-is-a-lambda 0 What is a "lambda" ? [closed] daemonfire300 2009-12-05T11:47:23Z 2009-12-14T20:52:48Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1085875/what-is-this-lambda-everyone-keeps-speaking-of">What is this &lsquo;Lambda&rsquo; everyone keeps speaking of</a> </p> </blockquote> <p>Hi there,</p> <p>I often heard the word <em>lambda</em> but I never get used to it or what it does.</p> <p>I SO'ed, googled, looked on wikis and portals, but what I found was mathematical explanations of lambda calculus</p> <p>So I ask what does it mean in a programming context?</p> http://stackoverflow.com/questions/1900046/lambda-tutorial-and-solving-a-lambda-function 0 Lambda Tutorial and Solving a Lambda-Function Doc Snuggles 2009-12-14T10:10:24Z 2009-12-14T15:27:04Z <p>Is it possible to shorten the following function to a lambda expression?</p> <p>Or (to do the trick by myself) what is the best and most understandable for beginners tutorial for lambda in vb.net?</p> <pre><code>Function getit(ByVal wert As Integer, ByVal sk As Integer, ByVal list As List(Of Array)) As String Dim ergebnis As String ergebnis = "Null" For Each strg As String() In list If wert &gt;= Integer.Parse(strg(0)) And wert &lt; Integer.Parse(strg(0)) + 5 And sk = Integer.Parse(strg(1)) Then Return strg(2) End If Next Return ergebnis End Function </code></pre> http://stackoverflow.com/questions/1883920/call-a-function-for-each-value-in-a-generic-c-collection 1 call a function for each value in a generic c# collection Stratton 2009-12-10T20:50:07Z 2009-12-11T10:47:33Z <p>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 in a foreach loop... is there a way to accomplish this with a lambda/linq expression?</p> <p>something like... <code>myList.Where(p =&gt; myFunc(p.Value));</code> ?</p> <p>thanks in advance, -s</p> http://stackoverflow.com/questions/1877437/setting-numpy-slice-in-lambda-function 2 Setting numpy slice in lambda function VolatileStorm 2009-12-09T22:40:54Z 2009-12-10T19:11:40Z <p>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.</p> <p>Considering you can't assign things in lambda functions is there a way to do something similar to this?</p> <p>The context of this is that I want to set the centre of a zeros array to another array in a single line, and the only solution I could come up with is to use reduce and lambda functions.</p> <p>I.e. I'm thinking about the condensation of this (where b is given):</p> <pre><code>a = numpy.zeros( numpy.array(b.shape) + 2) a[1:-1,1:-1] = b </code></pre> <p>Into a single line. Is this possible? This is just an exercise in oneliners. I have the code doing what I want it to do, I'm just wondering about this for the fun of it :).</p> http://stackoverflow.com/questions/1874418/how-to-make-a-list-of-arrays-not-their-symbols-in-lisp 1 How to make a list of arrays, not their symbols, in Lisp? culebrón 2009-12-09T14:55:10Z 2009-12-10T11:48:11Z <p>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.</p> <pre><code> (defvar p1 #(1 2)) (defvar p2 #(3 4)) (mapcar '(lambda (x) (aref x 0)) '(p1 p2)) debugger invoked on a TYPE-ERROR in ... The value P1 is not of type ARRAY. </code></pre> <p>The same error if I make it with make-array.</p> <p>How do I apply the lambda function, or how to apply <code>(aref x 0)</code>, or <code>(aref x N)</code> in general case?</p> <p>In the end I want to make a function that returns a delta: p2 - p1.</p> http://stackoverflow.com/questions/1875975/corner-case-in-using-lambdas-expression-in-base-constructor 3 Corner case in using lambdas expression in base constructor Olmo 2009-12-09T18:46:52Z 2009-12-09T19:34:33Z <p>In the Framework we are building we need the following pattern:</p> <pre><code>public class BaseRenderer { Func&lt;string&gt; renderer; public BaseRenderer(Func&lt;string&gt; renderer) { this.renderer = renderer; } public string Render() { return renderer(); } } public class NameRenderer : BaseRenderer { public string Name{ get; set; } public NameRenderer () : base(() =&gt;this.Name) {} } </code></pre> <p>As you see, we create a lambda when calling the base constructor. </p> <pre><code>public class Program { public static void Main() { Console.WriteLine(new NameRenderer(){Name = "Foo"}.Render()); } } </code></pre> <p>Oddly, when trying to actually use the lambda it throws NullReferenceException (Console Application), or some kind of ExecutionEngineExceptionexception (Web app on IIS).</p> <p>I think the reason is that this pointer is not ready before calling base constructor, so the lambda is unable to capture <code>this.Name</code> at this stage. </p> <p>Shouldn't it throw an exception in "capture time" instead of "execution time"? Is this behavior documented? </p> <p>I can refactor the code in a different way, but I think it worths a comment. </p> http://stackoverflow.com/questions/1875932/deleting-key-value-from-list-of-dictionaries-using-lambda-and-map 1 Deleting key/value from list of dictionaries using lambda and map webley 2009-12-09T18:40:52Z 2009-12-09T18:58:56Z <p>I have a list of dictionaries that have the same keys within eg:</p> <pre><code>[{k1:'foo', k2:'bar', k3...k4....}, {k1:'foo2', k2:'bar2', k3...k4....}, ....] </code></pre> <p>I'm trying to delete k1 from all dictionaries within the list.</p> <p>I tried</p> <pre><code>map(lambda x: del x['k1'], list) </code></pre> <p>but that gave me a syntax error. Where have I gone wrong?</p> http://stackoverflow.com/questions/884476/vb9-new-thread-with-multiple-parameters 0 VB9 New thread with multiple parameters dr. evil 2009-05-19T19:04:45Z 2009-12-09T14:20:34Z <p>I'm trying to create a new thread and send multiple parameters as well as a delegate to report back. </p> <p>In VB8 I always hate to do this because it requires either introducing a new class/structure or a delegate.</p> <p>Is there any better way to do this in VB9 ?</p> <p>I'm looking for a solution something like this :</p> <pre><code> Dim Th As New Thread(AddressOf DoStuff) Th.Start(param1, param2, AddressOf ReportStatus) </code></pre> <p>I'm not good with LINQ and Lambda, so I'm hopping that someone will show me some cool trick to do this.</p> http://stackoverflow.com/questions/1747235/weak-event-handler-model-for-use-with-lambdas 2 Weak event handler model for use with lambdas Benjol 2009-11-17T07:49:41Z 2009-12-09T12:10:39Z <p>OK, so this is more of an answer than a question, but after asking <a href="http://stackoverflow.com/questions/371109/garbage-collection-when-using-anonymous-delegates-for-event-handling">this question</a>, and pulling together the various bits from <a href="http://diditwith.net/CommentView,guid,aacdb8ae-7baa-4423-a953-c18c1c7940ab.aspx#commentstart" rel="nofollow">Dustin Campbell</a>, <a href="http://stackoverflow.com/questions/371109/garbage-collection-when-using-anonymous-delegates-for-event-handling/1447619#1447619">Egor</a>, and also one last tip from the '<a href="http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Brian-Beckman-and-Erik-Meijer-Inside-the-NET-Reactive-Framework-Rx/" rel="nofollow">IObservable/Rx/Reactive framework</a>', I think I've worked out a workable solution for this particular problem. It may be completely superseded by IObservable/Rx/Reactive framework, but only experience will show that.</p> <p>I've deliberately created a new question, to give me space to explain how I got to this solution, as it may not be immediately obvious.</p> <p>There are many related questions, most telling you you can't use inline lambdas if you want to be able to detach them later:</p> <ul> <li><a href="http://stackoverflow.com/questions/1089309/weak-events-in-net">Weak events in .Net?</a></li> <li><a href="http://stackoverflow.com/questions/859936/unhooking-events-with-lambdas-in-c">Unhooking events with lambdas in C#</a></li> <li><a href="http://stackoverflow.com/questions/16473/can-using-lambdas-as-event-handlers-cause-a-memory-leak">Can using lambdas as event handlers cause a memory leak?</a></li> <li><a href="http://stackoverflow.com/questions/805829/how-to-unsubscribe-from-an-event-which-uses-a-lambda-expression">How to unsubscribe from an event which uses a lambda expression?</a></li> <li><a href="http://stackoverflow.com/questions/183367/unsubscribe-anonymous-method-in-c">Unsubscribe anonymous method in C#</a></li> </ul> <p>And it is true that if <em>YOU</em> want to be able to detach them later, you need to keep a reference to your lambda. However, if you just want the event handler to detach itself when your subscriber falls out of scope, this answer is for you.</p> http://stackoverflow.com/questions/1867498/limit-collection-by-enum-using-lambda 0 Limit collection by enum using lambda asp316 2009-12-08T14:55:52Z 2009-12-08T15:00:22Z <p>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.</p> <p>Ideas?</p> http://stackoverflow.com/questions/1859646/generic-database-linq 1 Generic Database Linq DavidA 2009-12-07T12:15:16Z 2009-12-07T12:33:13Z <p>Given a function as below, i can take a single table from my database and write a lambda using the Where extension method and pretty much build all the other cases using a simple wrapper method and supplying a filter. </p> <pre><code> public void getPeople(Expression&lt;Func&lt;tblPeople, bool&gt;&gt; filter, Action&lt;List&lt;tblPeople&gt;&gt; callback) { var query = from People in sdContext.tblPeople.Where(filter) select People; var DSQuery = (DataServiceQuery&lt;tblPeople&gt;)query; DSQuery.BeginExecute(result =&gt; { callback(DSQuery.EndExecute(result).ToList&lt;tblPeople&gt;()); }, null); } </code></pre> <p>What I really would like to do now is write an even more generic method, that abstracts out the tblPeople to a parameter. This way I could just have one line methods for all my calls, at least those that provide lists! How can I take this and build:</p> <pre><code> public void getTable&lt;T&gt;(Expression&lt;Func&lt;T, bool&gt;&gt; filter, Action&lt;List&lt;T&gt;&gt; callback) { var query = from DB in sdContext.T.Where(filter) select DB; var DSQuery = (DataServiceQuery&lt;T&gt;)query; DSQuery.BeginExecute(result =&gt; { callback(DSQuery.EndExecute(result).ToList&lt;T&gt;()); }, null); } </code></pre> <p>Is this possible!</p> http://stackoverflow.com/questions/1838679/returning-a-lambda-function-in-clisp-then-evaluating-it 2 returning a lambda function in clisp, then evaluating it Paul Nathan 2009-12-03T09:16:57Z 2009-12-07T10:50:39Z <p>Suppose I have this wonderful function foo</p> <pre><code>[92]&gt; (defun foo () (lambda() 42)) FOO [93]&gt; (foo) #&lt;FUNCTION :LAMBDA NIL 42&gt; [94]&gt; </code></pre> <p>Now, suppose I want to actually <em>use</em> foo and return 42.</p> <p>How do I do that? I've been scrounging around google and I can't seem to come up with the correct syntax.</p> http://stackoverflow.com/questions/1850767/how-to-re-write-this-inner-join-subquery-from-sql-to-lambda 0 How to re-write this inner join subquery from SQL to Lambda GONeale 2009-12-05T01:32:31Z 2009-12-07T06:08:57Z <pre><code>SELECT ulcch.ID, ulcch.UserLoginHistoryID, ulcch.StatusID, ulcch.ClientModuleID, ulcch.DeviceState, ulcch.UpdatedAt, ulcch.CreatedAt FROM UserLoginClientConnectionHistory AS ulcch INNER JOIN (SELECT MAX(CreatedAt) AS maxCreatedAt FROM UserLoginClientConnectionHistory AS ulcch1 GROUP BY UserLoginHistoryID) AS m ON m.maxCreatedAt = ulcch.CreatedAt </code></pre> <p>There can be many updates of 'device state' per day audited into this login table. This query returns the last unique one for each day.</p> <p>I would like this re-written as a Lambda statement. This is how far I got, I don't know if i'm on the right track, and my <code>Max()</code> is throwing a type error, probably because the group by is making another list or something... Hope you can work it out from my object examples.... :S</p> <pre><code>userLogin.UserLoginClientConnectionHistories.Where(x =&gt; x.CreatedAt == userLoginClientConnectionHistoryRepository.GetAll( GenericStatus.Active).GroupBy(y =&gt; y.UserLoginHistoryID).Max(y =&gt; y.CreatedAt)); </code></pre> http://stackoverflow.com/questions/1856670/defining-event-handlers 3 Defining event handlers zachary 2009-12-06T21:27:34Z 2009-12-06T21:44:02Z <p>I can define an event like this(declared function):</p> <pre><code>MyElement.Keyup +=MyDeclaredFunction </code></pre> <p>I can also define it like this(anonymous delegate):</p> <pre><code>MyElement.Keyup+=new delegate(object sender, eventargs e) {}; </code></pre> <p>I can also define it like this(lambda):</p> <pre><code>MyElement.Keyup += (sender, e) =&gt; myfunction </code></pre> <p>What is the best way to do this? One case the code for the event is found with the declaration of the event... in the other they are seperated.</p> <p>I prefer method 1</p> <p>can anyone tell me what the pros and cons of each method might be?</p> http://stackoverflow.com/questions/1852618/how-can-i-make-this-lambda-work 1 How can I make this lambda work? Malfist 2009-12-05T16:19:48Z 2009-12-05T16:46:56Z <p>I have this code:</p> <pre><code> String temp = txtForm.Rtf; foreach (ReplaceStrut rs in replaceArray) { temp = temp.Replace(rs.getNeedle(), rs.getReplacement()); } if (this.InvokeRequired) { this.Invoke(temp =&gt; txtForm.Rtf = temp); } else { txtForm.Rtf = temp; } </code></pre> <p>But it won't compile. It complains about two things, "Cannot convert lambda expression to type 'System.Delegate' because it is not a delegate type" and, "A local variable named 'temp' cannot be declared in this scope because it would give a difference meaning to 'temp', which is already used in a 'parent or current' scope to denote something else"</p> <p>Both error are on the lambda line. How can I make this work, what am I doing wrong?</p> http://stackoverflow.com/questions/1832159/when-is-it-better-practice-to-explicitly-use-the-delegate-keyword-instead-of-a-la 0 When is it better practice to explicitly use the delegate keyword instead of a lambda? Nathan Ridley 2009-12-02T10:53:24Z 2009-12-04T11:32:37Z <p>Is there any best practice with respect to coding style with respect to explicit use of the <code>delegate</code> keyword instead of using a lambda?</p> <p>e.g.</p> <pre><code>new Thread(() =&gt; { // work item 1 // work item 2 }).Start(); new Thread(delegate() { // work item 1 // work item 2 }).Start(); </code></pre> <p>I think the lambda looks better. If the lambda is better style, what's the point of having a <code>delegate</code> keyword, other than for the fact that it existed before lambdas were implemented?</p> http://stackoverflow.com/questions/1686844/why-isnt-the-ruby-1-9-lambda-call-possible-without-the-dot-in-front-of-the-paren 1 Why isn't the Ruby 1.9 lambda call possible without the dot in front of the parens? Geo 2009-11-06T10:54:04Z 2009-12-03T23:59:20Z <p>I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python callable.</p> <pre><code>a = lambda {|x| puts x} a.call(4) # works, and prints 4 a[4] # works and prints 4 a.(4) # same a(4) # undefined method 'a' for main:Object </code></pre> <p>Why isn't the last call possible? Will it ever be?</p> http://stackoverflow.com/questions/1842040/c-net-3-5-is-there-any-way-to-get-this-function-name 1 C# (.NET 3.5) Is there any way to get this function name? cgyDeveloper 2009-12-03T18:49:30Z 2009-12-03T19:41:53Z <p>I have a function that wraps a call to one of my socket types. If there is an error, I want to be able to print a warning and retry. In the warning, I want to have the method name. However, it was declared as a lambda. Is this even possible?</p> <p>How I call the function (assume in function called myMain):</p> <pre><code>SafeSocketCommand(() =&gt; this.mySocket.ReadCurrentBuffer()); </code></pre> <p>Basic wrapping function:</p> <pre><code>protected TResult SafeSocketCommand&lt;TResult&gt;(Func&lt;TResult&gt; socketCommand) { TResult retValue = default(TResult); try { retValue = socketCommand(); } catch (PacketLost) { ReportToLogs("Timeout on command '" + socketCommand.Method.Name); } return retValue; } </code></pre> <p>But socketCommand.Method.Name gives me the calling method (from the Stack Trace?) '&lt; myMain >b__3' and I want the actual function being invoked by socketCommand (mySocket.ReadCurrentBuffer). Is it possible to get this information anywhere, or is it lost due to declaring in a lambda?</p> <p>EDIT:</p> <p>I should have mentioned that I use this particular calling convention so that I can use socket based commands of various signatures.</p> <pre><code>int i = SafeSocketCommand(() =&gt; this.mySocket.FunctionReturnsInt()) bool b = SafeSocketCommand(() =&gt; this.mySocket.FunctionReturnsBool(string s)) object o = SafeSocketCommand(() =&gt; this.mySocket.Complicated(string s, int i, bool b)) </code></pre> <p>It also handles no return type signatures by overloading:</p> <pre><code>protected void SafeSocketCommand(Action socketCommand) { SafeSocketCommand(() =&gt; { socketCommand(); return 0; }); } </code></pre> http://stackoverflow.com/questions/1794848/writing-my-first-dsl-in-c-and-getting-hung-up-on-funct-action 3 Writing my first DSL in C# and getting hung up on func<T> & Action sam 2009-11-25T05:29:33Z 2009-12-01T18:39:13Z <p>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 collections of the parent object. Here's a sample:</p> <p>Use:</p> <pre><code>var myMorningCoffee = Coffee.Make.WithCream().WithOuncesToServe(16); </code></pre> <p>Sample with closure (I think that's what they're called):</p> <pre><code>var myMorningCoffee = Coffee.Make.WithCream().PourIn( x =&gt; { x.ShotOfExpresso.AtTemperature(100); x.ShotOfExpresso.AtTemperature(100).OfPremiumType(); } ).WithOuncesToServe(16); </code></pre> <p>Sample class (without the child PourIn() method as this is what I'm trying to figure out.)</p> <pre><code> public class Coffee { private bool _cream; public Coffee Make { get new Coffee(); } public Coffee WithCream() { _cream = true; return this; } public Coffee WithOuncesToServe(int ounces) { _ounces = ounces; return this; } } </code></pre> <p>So in my app for work I have the complex object building just fine, but I can't for the life of me figure out how to get the lambda coded for the sub collection on the parent object. (in this example it's the shots (child collection) of expresso).</p> <p>Perhaps I'm confusing concepts here and I don't mind being set straight; however, I really like how this reads and would like to figure out how to get this working.</p> <p>Thanks, Sam</p> http://stackoverflow.com/questions/1822750/return-an-empty-collection-when-linq-where-returns-nothing 4 Return an empty collection when Linq where returns nothing ahsteele 2009-11-30T22:10:24Z 2009-12-01T07:26:37Z <p>I am using the below statement with the intent of getting all of the machine objects from the <code>MachineList</code> collection (type IEnumerable) that have a <code>MachineStatus</code> of <em>i</em>. The <code>MachineList</code> collection will not always contain machines with a status of <em>i</em>.</p> <p>At times when no machines have a <code>MachineStatus</code> of <em>i</em> I'd like to return an empty collection. My call to <code>ActiveMachines</code> (which is used first) works but <code>InactiveMachines</code> does not.</p> <pre><code>public IEnumerable&lt;Machine&gt; ActiveMachines { get { return Customer.MachineList .Where(m =&gt; m.MachineStatus == "a"); } } public IEnumerable&lt;Machine&gt; InactiveMachines { get { return Customer.MachineList .Where(m =&gt; m.MachineStatus == "i"); } } </code></pre> <p><strong>Edit</strong></p> <p>Upon further examination it appears that any enumeration of <code>MachineList</code> will cause subsequent enumerations of <code>MachineList</code> to throw an exeception: <code>Object reference not set to an instance of an object</code>.</p> <p>Therefore, it doesn't matter if a call is made to <code>ActiveMachines</code> or <code>InactiveMachines</code> as its an issue with the <code>MachineList</code> collection. This is especially troubling because I can break calls to <code>MachineList</code> simply by enumerating it in a Watch before it is called in code. At its lowest level <code>MachineList</code> implements <code>NHibernate.IQuery</code> being returned as an <code>IEnumerable</code>. What's causing <code>MachineList</code> to lose its contents after an initial enumeration?</p> http://stackoverflow.com/questions/825434/php-sandbox-sanitize-code-passed-to-createfunction 0 PHP sandbox/sanitize code passed to create_function kpowerinfinity 2009-05-05T15:27:37Z 2009-11-30T18:43:43Z <p>Hello, </p> <p>I am using create_function to run some user-code at server end. I am looking for any of these two:</p> <ol> <li>Is there a way to sanitize the code passed to it to prevent something harmful from executing?</li> <li>Alternately, is there a way to specify this code to be run in a sandboxed environment so that the user can't play around with anything else.</li> </ol> <p>Thanks!</p> http://stackoverflow.com/questions/1802802/c-lambda-ref-out 2 C# lambda ref out Jooj 2009-11-26T10:15:01Z 2009-11-30T17:57:33Z <p>I'm trying to do this, but it doesn't work. Some suggestions?</p> <pre><code>int test_i = 0; DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(test_i); test_i &lt;- still is 0 and not 3!!! public void DoSomethingThatTakesAgesAndNeedsToUpdateUiWhenFinished(int i) { DisableUi(); m_commandExecutor.ExecuteWithContinuation( () =&gt; { // this is the long-running bit ConnectToServer(); i = 3; &lt;-------------------------- // This is the continuation that will be run // on the UI thread return () =&gt; { EnableUi(); }; }); } </code></pre> <p>Why I can't set test_i to 3? I also tried ref and out, but it doesn't work.</p> <p>What can I do to fix it?</p> <p><strong>EDIT</strong></p> <p>I've tried this, but ouside of this method dataSet still is empty.</p> <pre><code>public static void Select(DataGridView dataGridView, ref DataSet dataSet, params object[] parameters) { var _dataSet = dataSet; AsyncCommandExecutor commandExecutor = new AsyncCommandExecutor(System.Threading.SynchronizationContext.Current); commandExecutor.ExecuteWithContinuation( () =&gt; { // this is the long-running bit _dataSet = getDataFromDb(parameters); // This is the continuation that will be run on the UI thread return () =&gt; { dataGridView.DataSource = _dataSet.Tables[0].DefaultView; }; }); dataSet = _dataSet; } </code></pre> http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda 49 Wrapping StopWatch timing with a delegate or lambda? Jeff Atwood 2008-10-24T08:39:46Z 2009-11-30T16:44:20Z <p>I'm writing code like this, doing a little quick and dirty timing:</p> <pre><code>var sw = new Stopwatch(); sw.Start(); for (int i = 0; i &lt; 1000; i++) { b = DoStuff(s); } sw.Stop(); Console.WriteLine(sw.ElapsedMilliseconds); </code></pre> <p>Surely there's a way to call this bit of timing code as a fancy-schmancy .NET 3.0 lambda rather than (God forbid) cutting and pasting it a few times and replacing the <strong><code>DoStuff(s)</code></strong> with <strong><code>DoSomethingElse(s)</code></strong>?</p> <p>I know it can be done as a <code>Delegate</code> but I'm wondering about the lambda way.</p> http://stackoverflow.com/questions/943992/how-to-write-lambda-methods-in-objective-c 4 How to write lambda methods in Objective-C ? Who knows 2009-06-03T10:16:13Z 2009-11-30T12:23:36Z <p>How to write lambda methods in Objective-C ?</p> http://stackoverflow.com/questions/1814061/convert-python-to-haskell-lambda-calculus 0 Convert Python to Haskell / Lambda calculus Masi 2009-11-28T23:03:06Z 2009-11-29T07:02:10Z <p><strong>What is the Python code in Haskell and Lambda calculus?</strong></p> <pre><code>def f1(): x = 77 def f2(): print x f2 f1 </code></pre> <p>My attempt in lambda calculus</p> <pre><code>\x. 77 (\x.x) </code></pre> http://stackoverflow.com/questions/1362469/passing-a-lambda-to-a-secondary-appdomain-as-a-stream-of-il-and-assembling-it-bac 7 Passing a lambda to a secondary AppDomain as a stream of IL and assembling it back using DynamicMethod aoven 2009-09-01T13:23:00Z 2009-11-26T16:56:54Z <p>Is it possible to pass a lambda expression to a secondary AppDomain as a stream of IL bytes and then assemble it back there using DynamicMethod so it can be called?</p> <p>I'm not too sure this is the right way to go in the first place, so here's the (detailed) reason I ask this question...</p> <p>In my applications, there are a lot of cases when I need to load a couple of assemblies for reflection, so I can determine what to do with them next. The problem part is I need to be able to unload the assemblies after I'm finished reflecting over them. This means I need to load them using another <code>AppDomain</code>.</p> <p>Now, most of my cases are sort of similar, except not quite. For example, sometimes I need to return a simple confirmation, other times I need to serialize a resource stream from the assembly, and again other times I need to make a callback or two.</p> <p>So I end up writing the same semi-complicated temporary <code>AppDomain</code> creation code over and over again and implementing custom <code>MarshalByRefObject</code> proxies to communicate between the new domain and the original one.</p> <p>As this is not really acceptable anymore, I decided to code me an <code>AssemblyReflector</code> class that could be used this way:</p> <pre><code>using (var reflector = new AssemblyReflector(@"C:\MyAssembly.dll")) { bool isMyAssembly = reflector.Execute(assembly =&gt; { return assembly.GetType("MyAssembly.MyType") != null; }); } </code></pre> <p><code>AssemblyReflector</code> would automize the <code>AppDomain</code> unloading by virtue of <code>IDisposable</code>, and allow me to execute a <code>Func&lt;Assembly,object&gt;</code>-type lambda holding the reflection code in another <code>AppDomain</code> transparently.</p> <p>The problem is, lambdas cannot be passed to other domains so simply. So after searching around, I found what looks like a way to do just that: pass the lambda to the new <code>AppDomain</code> as an IL stream - and that brings me to the original question.</p> <p>Here's what I tried, but didn't work (the problem was <code>BadImageFormatException</code> being thrown when trying to call the new delegate):</p> <pre><code>public delegate object AssemblyReflectorDelegate(Assembly reflectedAssembly); public class AssemblyReflector : IDisposable { private AppDomain _domain; private string _assemblyFile; public AssemblyReflector(string fileName) { ... } public void Dispose() { ... } public object Execute(AssemblyReflectorDelegate reflector) { var body = reflector.Method.GetMethodBody(); _domain.SetData("IL", body.GetILAsByteArray()); _domain.SetData("MaxStackSize", body.MaxStackSize); _domain.SetData("FileName", _assemblyFile); _domain.DoCallBack(() =&gt; { var il = (byte[])AppDomain.CurrentDomain.GetData("IL"); var stack = (int)AppDomain.CurrentDomain.GetData("MaxStackSize"); var fileName = (string)AppDomain.CurrentDomain.GetData("FileName"); var args = Assembly.ReflectionOnlyLoadFrom(fileName); var pars = new Type[] { typeof(Assembly) }; var dm = new DynamicMethod("", typeof(object), pars, typeof(string).Module); dm.GetDynamicILInfo().SetCode(il, stack); var clone = (AssemblyReflectorDelegate)dm.CreateDelegate( typeof(AssemblyReflectorDelegate)); var result = clone(args); // &lt;-- BadImageFormatException thrown. AppDomain.CurrentDomain.SetData("Result", result); }); // Result obviously needs to be serializable for this to work. return _domain.GetData("Result"); } } </code></pre> <p>Am I even close (what's missing?), or is this a pointless excercise all in all?</p> <p>NOTE: I realize that if this worked, I'd still have to be carefull about what I put into lambda in regard to references. That's not a problem, though.</p> <p><strong>UPDATE: I managed to get a little further. It seems that simply calling <code>SetCode(...)</code> is not nearly enough to reconstruct the method. Here's what's needed:</strong></p> <pre><code>// Build a method signature. Since we know which delegate this is, this simply // means adding its argument types together. var builder = SignatureHelper.GetLocalVarSigHelper(); builder.AddArgument(typeof(Assembly), false); var signature = builder.GetSignature(); // This is the tricky part... See explanation below. di.SetCode(ILTokenResolver.Resolve(il, di, module), stack); dm.InitLocals = initLocals; // Value gotten from original method's MethodInfo. di.SetLocalSignature(signature); </code></pre> <p>The trick is as follows. Original IL contains certain metadata tokens which are valid only in the context of the original method. I needed to parse the IL and replace those tokens with ones that are valid in the new context. I did this by using a special class, <code>ILTokenResolver</code>, which I adapted from these two sources: <a href="http://www.codeproject.com/KB/cs/ExpressionEval.aspx" rel="nofollow">Drew Wilson</a> and <a href="http://blogs.msdn.com/haibo%5Fluo/archive/2006/11/06/system-reflection-based-ilreader.aspx" rel="nofollow">Haibo Luo</a>.</p> <p>There is still a small problem with this - the new IL doesn't seem to be exactly valid. Depending on the exact contents of the lambda, it may or may not throw an InvalidProgramException at runtime.</p> <p>As a simple example, this works:</p> <pre><code>reflector.Execute(a =&gt; { return 5; }); </code></pre> <p>while this doesn't:</p> <pre><code>reflector.Execute(a =&gt; { int a = 5; return a; }); </code></pre> <p>There are also more complex examples that are either working or not, depending on some yet-to-be-determined difference. It could be I missed some small but important detail. But I'm reasonably confident I'll find it after a more detailed comparison of the ildasm outputs. I'll post my findings here, when I do.</p> <p><strong>EDIT:</strong> Oh, man. I completely forgot this question was still open. But as it probably became obvious in itself, I gave up on solving this. I'm not happy about it, that's for sure. It's really a shame, but I guess I'll wait for better support from the framework and/or CLR before I attempt this again. There're just to many hacks one has to do to make this work, and even then it's not reliable. Apologies to everyone interested.</p>