Anonymous functions use a block of code as a value, defining it as an inline function without a name.

learn more… | top users | synonyms (1)

1
vote
2answers
30 views

Memory size of function handle - MATLAB

One of the fields in my structure is a function handle: strct.handl=@(arg1,arg2)handl(arg1,arg2,par1,par2) Now, arg1 and arg2 are defined every time I use the handle, but par1 and par2 are stored ...
4
votes
2answers
66 views

How can I write a Func without Lambde expression?

I am just thinking how to convert this: List.Where(X=>X>5); to non-lambda expression code. I cannot figure out how to get Func working here.
0
votes
1answer
24 views

Node.JS / Javscript Async Call back issue

I am trying to accomplish the following (should be quite basic and I must be missing something trivial): 1. Call a function with string that has a select statement 2. Wait until the DB call completes ...
2
votes
0answers
15 views

How to Bind dropdown from anonymous class values

I want to populate a dropdown with values A,Band C.The below code works for create only,not for edit. ViewBag.UserType = new[] { new SelectListItem { Text = "A", Value = "1", Selected = false }, ...
0
votes
3answers
26 views

Class variables in JavaScript and setInterval

Since I need to pass an anonymous function to setInterval if I want parameters, I tried using the below code. Originally I had it calling this.countUp, but as that returned NaN I did some reading and ...
0
votes
1answer
22 views

Length of a vector output by an anonymous function in MATLAB

So I've created some anonymous function, say, thisguy=@(x) [1,x,3] I would say that the length of the output of thisguy should be 3; i.e. it is a 1x3 vector. Now, suppose that I have such a ...
3
votes
2answers
65 views

Anonymous functions with no input parameters

I'm trying to figure out C#'s syntax for anonymous functions, and something isn't making sense to me. Why is this valid Func<string, string> f = x => { return "Hello, world!"; }; but ...
-2
votes
0answers
43 views

PHP passing variable amount of parameters to an anonymous function [closed]

Hi I am very new to all this and am working with Mysql and PHP. I would like to be able to create a function from variable names that are stored in a database as strings eg. database field ...
0
votes
1answer
22 views

self executing anonymous functions + Comma seperated statements

Can anyone explain the following code piece. I am aware this type of function calling is anonymous functions. But i am not sure how comma separated statements will work inside it, especially in for ...
1
vote
0answers
29 views

Serializing anonymous functions in php

is there any way to serialize an anonymous function in php? i have found this http://www.htmlist.com/development/extending-php-5-3-closures-with-serialization-and-reflection/ protected function ...
0
votes
2answers
39 views

Why does this wildcarded function tells me it has the wrong number of parameters?

The offending code was: <console>:47: error: wrong number of parameters; expected = 2 terms.foldLeft(r.unitA)(r.add(_, _.eval(x))) I solved my problem by writing: ...
0
votes
2answers
54 views

How is this working !function(){console.log(“hi”)}() [duplicate]

I read this on the javascript garden site. Can someone explain how it works? !function(){console.log("hi")}()
0
votes
1answer
28 views

Using an anonymous function as part of a javascript object

I'm going to show you two snippets. This works fine: this.searchBox = new Foo.UI.SearchBox(this.input, { autoCompleteSearchComplete: processSearchResults }); This doesn't work at all: ...
3
votes
2answers
37 views

Obtain property name within anonymous function in Javascript

Is it possible to get the name of the property that called the anonymous function in javascript? Example var obj = { WhoAmI: function() { //Obtain the name WhoAmI } }
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. ...
0
votes
3answers
37 views

jquery callback anonymous function closure

I've declared the variable elem in both of the loops below; however, when the anonymous function in the first loop gets called (after the 400ms fadeOut effect is finished) the elem seems to refer to ...
0
votes
1answer
26 views

Encapsulating code with anonymous functions in Matlab?

I need to repeat this code many times. It is part of system-tester. testFvB=@(fBE,fMCS,CI) { d='FV'; dF=strcat('testing/systemTestFiles/D_', fBE, '_', fMCS, '_', d, '.txt'); ...
2
votes
1answer
25 views

How to pass a value to a anonym method in Task.Factory

I'm using a construct like that: string myurl = "http://google.de"; Task.Factory.StartNew(() => { MessageBox.Show(url); }); How to pass myurl to the anonym function?
4
votes
2answers
56 views

R anonymous function: capture variables by value

I've defined a list of anonymous functions which use a variable defined in an outer scope. funclist <- list() for(i in 1:5) { funclist[[i]] <- function(x) print(i) } funclist[[1]]('foo') ...
-2
votes
3answers
30 views

Anonymizing Google Pagespeed

I'm new to javascript. How do I anonymize Google Pagespeed? Here is the original code: http://pastebin.com/xRbTekDA. It works when I load the page Here is the anonymize code: ...
1
vote
1answer
34 views

When enclose an object by anonymous function, show me error message

I have the following simple example. (function() { var note = { show: function() { alert('hi'); } }; })(); When usage note.show(); Show me error message ReferenceError: note is ...
1
vote
5answers
60 views

What is the most efficient way to do this process in jQuery? [closed]

This works flawlessly, but somehow I think there are easier and quicker ways to do this. I'm unsure, and I'm looking for suggestions. Here's the code: /* create a hover event and a click event */ ...
0
votes
1answer
37 views

converting PHP anonyous functions

I need some assistance on converting this PHP anonymous function: is this (anonymous style) $app->beforeAll(function($request) { $request->appInstance = ...
0
votes
1answer
23 views

Assignment in function argument list Javascript

Is this valid JS? It runs but was wondering whether that was a browser quirk. I know its probably bad practice as its confusing but still a cool concept. showClickMask : function ...
0
votes
0answers
17 views

Is it possible to stop a timer inside anonymous function provided for its TimerCallback?

I am trying to implement a timer loop to retry an action 5 times and then the timer should stop. I want to use an anonymous function for the TimerCallback. However I am not sure if I can access the ...
0
votes
2answers
67 views

Accessing elements from a list using an anonymous function

So, lets say I have a list of functions such as [(+3), (*10), (+50)] and a value 1 I am trying to create a function in Erlang that uses an anonymous function access and apply every function to the ...
0
votes
2answers
20 views

regulate PHP anonymous function to 5.2

need help on regulating anonymous function. cant get through this one.. $marks = implode(',', array_map(function() { return '?'; }, explode(',', ...
0
votes
2answers
41 views

Check for anonymous functions in PHP arrays?

How can we check for anonymous functions inside PHP arrays? Example: $array = array('callback' => function() { die('calls back'); }); Can we then just simply use in_array, and to something ...
0
votes
3answers
59 views

Javascript Anonymous Closure

I have read a lot about closures in Javascript What are those braces for?? I read on mozilla.org which says closure should be defined as (function(){...})(); but on ...
2
votes
1answer
119 views

jQuery UI Slider change and slide events report different results

Okay, so a very similar question was asked here jQuery UI Slider - Value returned from 'slide' event on release is different from 'change' value But the answer was unsatisfactory in ...
0
votes
1answer
36 views

javascript event listener with param

I have a simple event listener: function listen(evnt, elem, func) { if (elem.addEventListener) // W3C DOM elem.addEventListener(evnt,func,false); else if (elem.attachEvent) { // IE ...
1
vote
1answer
20 views

JS anon functions in PHP (without anon function support)

Let's say I have this JS code: var events = ['start', 'stop', 'tick'] , obj = ... // object with events , receiver = function(event_name, event_args){ // function to receive all events ...
1
vote
1answer
38 views

Can I find where a PHP anonymous function was defined?

Closures don't seem to be fully exposed to reflection. On inspection as an object, it doesn't seem to have anything useful: $foo = function ($a, $b) {}; $ref = new ReflectionObject($foo); ...
0
votes
1answer
57 views

innerHTML showing the function, not the return value of the function

Trying to DRY up some old javascript I wrote. test() function test() { var output = function() { return ajaxPost("test.php", "testvar=bananas"); } ...
5
votes
5answers
107 views

Anonymous Function return value

I've recently experimenting with some things, and wondered if there was any way to use the return value of an anonymous function Lets say I had a for-loop that made an array that each value of the ...
3
votes
1answer
79 views

Fixed-Point Combinators

I am new to the world of fixed-point combinators and I guess they are used to recurse on anonymous lambdas, but I haven't really got to use them, or even been able to wrap my head around them ...
1
vote
2answers
47 views

Difference between “use” and passing a parameter to controller function

I don't have a specific problem, just looking to deepen my understanding of what's going on with Silex and with some new-ish PHP features in general. This is based off the code samples on the "usage" ...
0
votes
2answers
42 views

weird behavior of variables in anonymous functions?

Could anyone explain why the trace result of the code below are "5,5,5,5,5" rather than "1,2,3,4,5" and how do you make the anonymous function refer the collect element in the array?( in this example, ...
0
votes
3answers
58 views

Modify arguments in self executing function

I want to be able to modify the arguments passed to a self executing function. Here is some sample code: var test = 'start'; (function (t) {t = 'end'} )(test); alert(test) //alerts 'test' And here ...
10
votes
2answers
122 views

Why is the result of two function definitions joined by a comma?

Why does the following code alert 2? var f = (function x(){ return 1; }, function y(){ return 2; })(); alert(f); What I can see is that somehow the y function is getting executed and x function is ...
1
vote
1answer
55 views

How to avoid `missing type` error while chaining partial functions

I'm currently studying Scala & Akka and developing test application for it. In this application almost all actors log unhandled messages for ease of debug: import akka.actor._ class TestActor ...
2
votes
2answers
66 views

What happens to locals if they're referenced by an anonymous function called after they fall out of scope?

Consider this contrived example: public static class Test { private static List<Action> actions = new List<Action>(); private static Int32 _foo = 123; public static void ...
0
votes
1answer
30 views

Anonymous function inside a script error

I created an anonymous funtion inside a script and I can't get MATLAB to run the fminsearch? Here's an what I have so far: V=x(1); f=x(2); q=@(x) (pi.*D.*L)./(1000.*V.*f); fminsearch(@q,x); The ...
2
votes
2answers
65 views

Scala anonymous function involving Boolean argument grammar error

I found this very confusing. scala> val a = (x:Boolean)=>!x <console>:7: error: not found: value x val a = (x:Boolean)=>!x ^ scala> val a = (x:Boolean)=> ...
3
votes
3answers
58 views

Anonymous functions in Javascript, arguments and placement

When I make an anonymous function in Javacript like this: (function(){ /* some code here */ })() In which object will be this function added, and where will this function live? Also you can see ...
6
votes
1answer
101 views

Returning anonymous functions from lapply - what is going wrong?

When trying to create a list of similar functions using lapply, I find that all the functions in the list are identical and equal to what the final element should be. Consider the following: pow ...
3
votes
2answers
43 views

Adding a function to an array

I am adding an anonymous function to an array and attempting to iterate over that array executing its contents. Even with a simple test case, I am getting a TypeError: is not a function. Am I ...
0
votes
2answers
46 views

How to access anonymous control's result?

I have this code textBox1.MouseDown += (o, em) => if (new FolderBrowserDialog { RootFolder = Environment.SpecialFolder.Desktop }.ShowDialog() == ...
1
vote
2answers
52 views

Can I pass a named function in a place where a “block” is asked for?

For example, to call authenticateHandler @property(nonatomic, copy) void(^authenticateHandler)(UIViewController *viewController, NSError *error) The little hat thing ^(UIViewController ...
1
vote
2answers
90 views

Functions with other functions as input using delegates in C#

I have some delegates and a method: delegate Point Translate(Point p); delegate Translate Transform(Translate t); Translate forward = p => new Point(p.X + 1, p.Y); Question: How can I implement ...

1 2 3 4 5 14