Tagged Questions
The first-class-functions tag has no wiki summary.
15
votes
2answers
701 views
What is the difference between delegates in C# and functions as first class values in F#?
More specifically what are the characteristics (if any) that delegates have that functions as first class values in F# don't have; and what are the characteristics that functions as first class values ...
5
votes
3answers
300 views
How do I reference a function in Ruby?
In python, it's fairly straightforward to reference a function:
>>> def foo():
... print "foo called"
... return 1
...
>>> x = foo
>>> foo()
foo called
1
...
4
votes
3answers
3k views
Python - Passing a function into another function
I am solving a puzzle using python and depending on which puzzle I am solving I will have to use a special set of rules. How can I pass a function into another function in Python?
Example
def ...
3
votes
3answers
293 views
Accessing a Class Member from a First-Class Function
I have a case class which takes a list of functions:
case class A(q:Double, r:Double, s:Double, l:List[(Double)=>Double])
I have over 20 functions defined. Some of these functions have their ...
3
votes
3answers
259 views
Assigning document.getElementById to another function
I am trying to do the following in JavaScript:
var gete = document.getElementById;
But I am getting the following error (From FireBug's Console):
uncaught exception: [Exception... "Illegal ...
3
votes
2answers
1k views
Why isn't the Ruby 1.9 lambda call possible without the dot in front of the parens?
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.
a = lambda ...
2
votes
2answers
101 views
Desugar Lua operators
Since Lua supports first-class functions, I'd like to know if you can desugar operators, like in many functional languages. E.g in OCaml you can do:
let x = (+) 3 5
The code above inits the ...
2
votes
3answers
247 views
C# version of Java Runnable? (delegate?)
I could not find a direct answer to this question yet in SO. Is there a predefined delegate with void (void) signature?
2
votes
3answers
71 views
How can I get a reference to a method that contains the arguments used for invocations, in Ruby?
Given this code:
a = {1=>2}
m = a.method(:[])
I know that I can now use :
value = m.call(1)
and it will return 2. The thing is, what do I need to change so that I can call the method directly ...
1
vote
1answer
48 views
Invoking a function from a class member in PHP
Say I have the following:
class C {
private $f;
public function __construct($f) {
$this->f = $f;
}
public function invoke ($n) {
$this->f($n); // <= error ...
1
vote
1answer
177 views
passing functions as arguments in clojure
I have a function which takes a function and a number and returns the application of the function on the number, and a cube function:
(defn something [fn x]
(fn x))
(defn cube [x]
(* x x x))
...
1
vote
6answers
460 views
What is a first class citizen function?
What is a first class citizen function?
Does Java supports first class citizen function?
Edit:
As mention on Wikepedia
First class functions are a necessity
for the functional programming ...
0
votes
4answers
91 views
What is the equivalent of passing functions as arguments using an object oriented approach
I have a program in python that includes a class that takes a function as an argument to the __init__ method. This function is stored as an attribute and used in various places within the class. The ...
0
votes
1answer
70 views
Odd linked list/anonymous class behavior - executing when added?
This question is related to How to Queue and Call Actual Methods... Anyway, I've decided to (after all) go with the anonymous class idea. The problem is that when I ADD my anonymous class to the ...