Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
15answers
2k views

Which languages support *recursive* function literals / anonymous functions?

It seems quite a few mainstream languages support function literals these days. They are also called anonymous functions, but I don't care if they have a name. The important thing is that a function ...
7
votes
1answer
170 views

How should I avoid unintentionally capturing the local scope in function literals?

I'll ask this with a Scala example, but it may well be that this affects other languages which allow hybrid imperative and functional styles. Here's a short example (UPDATED, see below): def method: ...
4
votes
5answers
707 views

how to simplify scala's function literal like this?

I'm new to scala and trying to write a function literal that check whether a given integer is odd or not. my first attempt is: val isOdd = (x:Int) => (x & 1) == 1 it works great, and, since the ...
3
votes
1answer
121 views

How to define a function that takes a function literal (with an implicit parameter) as an argument?

I want to be able to do something on these lines (won't compile): def logScope(logger:Logger)(operation: (implicit l:Logger) => Unit) {/* code */ operation(logger) /* code */} def ...
2
votes
1answer
287 views

Default type-parametrized function literal class parameter

Is this an intended behavior or is it a bug? Consider the following trait (be it a class, doesn't matter): trait P[T] { class Inner(val f: T => Unit = _ => println("nope")) } This is what ...
1
vote
3answers
28 views

JavaScript Object literal method: Recursive call

Is it possible to call recursively a method from an object literal? For example: (function () { 'use strict'; var abc = ['A', 'B', 'C'], obj = { f: function () { ...
1
vote
1answer
50 views

Better approach nulling variables, objects in javascript

I am building something for mobile and would like somehow to clear, null objects, variables to release a bit of memory. Here I have two quick examples, both are anonymous functions as I believe but ...
1
vote
1answer
52 views

Difference between functions and function literals in ActionScript 3?

What is the difference between the following two function definitions in ActionScript 3? f = function(arg) { // body } and function f(arg) { // body }
1
vote
1answer
204 views

Scala underscore use to simplify syntax of function literals

I have the following code: var x = Array(1,3,4,4,1,1,3) var m = Int.MaxValue x.foreach((x)=>(m = m min x)) I tryied to simplify last sentence to: x.foreach((m = _ min m)) But the interpreter ...
0
votes
1answer
87 views

How to determine whether an object was created using an object literal or an Object constructor call?

More specifically, how would you determine if a certain object was created using a literal or not? var s1 = new String(); var s2 = ""; // Literal var o1 = new Object(); var o2 = {}; // Literal var ...