2
votes
2answers
105 views
What is the name for this usage of delegate in C#?
This is a terminology question. In C#, I can do this:
delegate Stream StreamOpenerDelegate(String name);
void WorkMethod(StreamOpenerDelegate d)
{
// ...
}
void Exec1()
{
…
1
vote
3answers
43 views
Javascript closure / variable scope question - I know it works, but why?
Hi, I've been developing with JS for a while, and while I know that code below works, I don't really understand why it works.
The way I see it, I've defined testString in testCl …
3
votes
6answers
325 views
Are there any good reasons why closures aren’t immutable in C#?
I've been going over and over this in my head, and I can't seem to come up with a good reason why C# closures are mutable. It just seems like a good way to get some unintended cons …
23
votes
6answers
1k views
C# - The foreach identifier and closures
In the two following snippets, is the first one safe or must you do the second one?
By safe I mean is each thread guaranteed to call the method on the Foo from the same loop itera …
0
votes
1answer
21 views
Groovy FindAll statement for finding values that don’t exist.
Hi.
I am trying to construct a Groovy statement to find values that don't exist in a pre-populated list.
I'm using SQL and think I want to do something like :
myList = [a, b …
7
votes
8answers
722 views
Groovy vs Scala [vs JRuby vs Closure vs Jython]
I'm planning to broaden my perspectives in JVM platform, and I've got a dilemma: what should I learn first? Could you please explain, what are the advantages of Groovy, Scala and o …
0
votes
1answer
22 views
Issues with closure and a method defined elsewhere.
I am pretty new at Javascript so I may not be using the exact terminology.
Suppose that I define an object literal as such.
var myObj = {
someMethod:function() {
//can …
8
votes
5answers
2k views
Javascript + Firebug : “cannot access optimized closure” What does it mean?
I just got the following error in a piece of javascript (in Firefox 3.5, with Firebug running)
cannot access optimized closure
I know, superficially, what caused the error. I ha …
2
votes
3answers
174 views
Problem with JavaScript closure
Hey guys, I am stuck at the following code. At first I'll describe the use-case: The function "addPreset" gets called with an instance of ColorGradient. When calling this.listContr …
1
vote
1answer
113 views
Lua Closures in implementing a DSL
Lua has a really nice no-parenthesis call syntax that coupled with function closures allow me to write the following
local tag = 1
function test(obj)
return
function(str …
0
votes
3answers
153 views
Adding HTML to Drupal closure?
To add javascript, you can use:
drupal_add_js
And similar for css:
drupal_add_css
But what if I just want to add html at the end of my page. I.e. Add a div with some text in …
1
vote
1answer
61 views
Using Curry to Define Grails Tags
I have a grails tag library TpTagLib and in it I want to define 4 new tags that differ only in one constant value, so I tried to use curry.
But there is an exception: groovy.lang.M …
3
votes
4answers
240 views
Access outside variable in loop from Javascript closure
See:
for (var i in this.items) {
var item = this.items[i];
$("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item …
8
votes
6answers
764 views
When to use closure?
I have seen samples of closure from - http://stackoverflow.com/questions/36636/what-is-a-closure
Can anyone provide simple example of when to use closure?
Specifically, scenarios …
3
votes
2answers
287 views
Scala closures on wikipedia
Found the following snippet on the Closure page on wikipedia
//# Return a list of all books with at least 'threshold' copies sold.
def bestSellingBooks(threshold: Int) = bookList. …
