4
votes
2answers
114 views

Why do these folds stop at the head/tail?

I'm reading learnyouahaskell.com and currently investigating folds. In the book there are these examples: maximum' :: (Ord a) => [a] -> a maximum' = foldr1 (\x acc -> if x > acc then x ...
0
votes
2answers
46 views

Understanding the apply method example in functional programming in Eloquent JavaScript

I am reading the Eloquent JavaScript and I got to Functional programming (chapter 6). I am confused by the following example: show(Math.min.apply(null, [5, 6])); function negate(func) { return ...
0
votes
6answers
98 views

Passing one subroutine to another subroutine

I have one function sub _where(\@ \&) which takes 2 arguments: the first is an array, and the second should be another function. This other function returns a boolean value, and I want to call it ...
0
votes
2answers
92 views

How can I define an operator (eg integrator) in Python operating on a multi-variable function?

How can I define an operator (eg integrator) in Python operating on a multi-variable function? My problem is that when I define an integrator function numint to numerically integrate a multivariable ...
0
votes
2answers
174 views

private functions vs nested functions

the question is: when to use private functions and when to use nested functions? (i'm asking about F# but maybe answers can be relevant in other functional languages) a small example namespace ...
0
votes
4answers
70 views

Converting this function to anonymous function

How do I create this function which returns true if a number is 5 to an anonymous function: def yeah_five(p: Int): Boolean = p == 5 thanks?
2
votes
3answers
227 views

What are those functional functions called?

I'm looking for a functional way to implement this: list = [a b c d e f] foo(list, 3) = [[a d] [b e] [c f]] A potential solution is: foo(list,spacing) = zip(goo(list,spacing)) Where, for ...
0
votes
2answers
156 views

Returning True for only 1 Function out of the list of 3

Since I'm pretty sure that using global variables in Haskell is frowned upon. I'm wondering is there anyway I can achieve the following? -- list has elements that are odd listHasOdd :: [Integer] ...
0
votes
2answers
69 views

Defining a variable within a function in OCaml

I've got a function numofday that I'd like to apply to two variables in another function that will return the number of days between the two given days, the functions themselves don't really matter, I ...
1
vote
1answer
69 views

Function to return a day n days ahead of given day

So I'm looking to build a function that takes an int and a day (of my day type below) and returns the day n days ahead of the given day. I have type day defined as type day = Sun | Mon | Tues | Wed ...
2
votes
4answers
178 views

Javascript: What is the benefit of using function context vs passing as parameter

Other than tricking existing functions that already implement this as something, why would you want to write a javascript function so that you need to alter its context (via .call or .apply) rather ...
1
vote
4answers
98 views

OCaml recursive function to apply a function n times

I want to create a function of type int -> ('a -> 'a) -> 'a -> 'a in OCaml that takes an int n (non-neg) and a function f 'a -> 'a and an argument a of type 'a. f should be called on a n times. I've ...
0
votes
1answer
63 views

Defining a function with a function as an argument

I am currently trying to define a function of type ('a -> 'a) -> 'a -> 'a which takes a function of type 'a -> 'a and an argument of type 'a and calls the function twice on the argument. I'm ...
2
votes
1answer
90 views

How to use lambda as lexical scope in C++

The codes are like this: int a = 1; auto f = [a] {return a;}; a = 100; std::cout << f() << endl; return 0; I expected to see 100 as the result. However, the a is like freezed when ...
0
votes
0answers
52 views

Which approach is better in terms of performance and code maintenance?

I have to call 2 functions inside another function and use their returned values in this function. I have provided a skeleton code below. This is not specific to any programming language, but you may ...
0
votes
2answers
88 views

Evaluate function from list in lisp

I need to write a function in lisp with two arguments - list of argumentless functions and list of integers. I need to evaluate functions from first list in order given by a second, i.e. (fun '(#'a ...
0
votes
1answer
58 views

Scheme - Passing too much arguments into a function doesn't cause error?

Given the following code : (define (g x y) (* x y)) (define (f x y z) (define (h x y)(g (+ x y) x z))h) Notice that I pass 3 arguments into g ,where g accepts only 2 . However ,no error ...
0
votes
1answer
76 views

Function passing blank list as argument instead of single-element list

I'm writing a function that parses strings into lists that get used by another function. One of the operations that it performs is that it attaches a character to a string inside the (sometimes deeply ...
4
votes
4answers
173 views

What object javascript function is bound to (what is its “this”)?

I know that inside the function it is this. var func = function { return this.f === arguments.callee; // => true, if bound to some object // => false, if is bound to null, because ...
-3
votes
1answer
72 views

Function that returns a function? [closed]

Q: Write a function make_cylinder_volume_func(r) which expects a number r to represent the radius of a cylinder. The function call make_cylinder_volume_func(r) should return a function which takes a ...
0
votes
3answers
101 views

Ruby method chaining - `tap` with replacement [duplicate]

Possible Duplicate: Is there a `pipe` equivalent in ruby? I'm looking at the tap method in Ruby - but unfortunately the object returned from the passed block is not passed on. What method ...
2
votes
1answer
109 views

Javascript object with a hidden function?

I want to create a variable such that foo.properties returns {default:{x:undefined}}. However, you may notice that the properties variable is not directly editable and thus __defineGetter__ is used to ...
3
votes
3answers
200 views

How to write a recursive function in C# that looks like A(key, B(key, C(key, ValFactory(key))))?

How do you write a function that has this form: A(key, B(key, C(key, ValFactory(key)))) Where A, B, and C have this signature: TResult GetOrAdd(string key, Func<string, TResult> generator); ...
5
votes
6answers
406 views

Haskell Programmatically/Dynamically Define Functions

I'm looking for a way to dynamically define functions in Haskell, or for Haskell's idiomatic equivilent of which I'm clearly not aware. The scenario is as follows: I have a tagWithAttrs function that ...
0
votes
1answer
84 views

What is a function composition algorithm that will work for multiple arguments, such as h(x,y) . f(x) . g(x) = h(f(x),g(x))?

For example, suppose we had the functions double(x)=2*x, square(x)=x^2 and sum(x,y)=x+y. What is a function compose such as compose(compose(sum,square),double) = x^2 + 2*x? Notice that I'm asking a ...
3
votes
5answers
381 views

How to convert this function to use tail call

Recursive function: let rec listMerge (l1 : 'a list) (l2 : 'a list) = if l1.IsEmpty then l2 elif l2.IsEmpty then l1 else l1.Head :: l2.Head :: listMerge ...
2
votes
3answers
179 views

Fast function objects in C++?

I'm writing a program for scientific computing and my foremost interest (after correctness) is speed. Recently I have noticed that I need readable code too. :) Instead of writing for (int ...
0
votes
1answer
70 views

Is it possible to have a function within a method in Python?

If so, how would you do this. def methodname(self, blah, blah) ^how do I place a function inside this.
5
votes
3answers
388 views

Function objects in C++ (C++11)

I am reading about boost::function and I am a bit confused about its use and its relation to other C++ constructs or terms I have found in the documentation, e.g. here. In the context of C++ (C++11), ...
0
votes
2answers
150 views

Haskell use of map and composed function

Ok, I can't figure this one out even though I have an idea what it's doing... let t = ["APE", "MONKEY", "DONKEY"] Now consider three cases: map (length.group) t (map length.group) t map (map ...
3
votes
4answers
233 views

Scheme - have a function return a function

I want to use this code in the following way: if I enter: ((function1 5) 2) where function1 executes its procedure based off the 5, and returns a function2 that executes something based on the 2. ...
0
votes
1answer
75 views

cross-tabulations on multiple data.frames and columns

I'm calculating summary statistics for numerous data frames across multiple slices vs a single response variable. I currently do this by passing a list of DFs to a function. But my function has to ...
3
votes
3answers
158 views

Function decorators in Ruby, as in Python

Is there a way to decorate a function in Ruby as it's done in Python? That is, have something execute at the beginning (and end?) of each function. Like this: ...
2
votes
4answers
149 views

Is it possible to do functional programming in a language without functions?

In this comment, it was stated that Ruby doesn't have functions, only methods. If Ruby doesn't have functions, is it not possible to do functional programming in it? Or am I confused about the term ...
6
votes
2answers
177 views

What is more pythonic - function composition, lambdas, or something else? [closed]

Given the example below, which is more pythonic? Using function composition, lambdas, or (now for) something completely different? I have to say that the lambdas seem to be more readable, but Guido ...
9
votes
1answer
178 views

Is it good practice for a Clojure record to implement IFn?

Suppose I have a record that is "function-like", at least in the sense that it represents an operation that could be applied to some arguments. I can make it work as a function by implementing ...
1
vote
4answers
104 views

python functions returning functions [closed]

I am aware of the partial function in functools, but how common is it in general python programs (not: Haskell, Erlang, Clojure etc ) to write functions to return functions in Python? for example: ...
7
votes
2answers
125 views

How to construct such a functional-programming tool in Python?

I want a function named times(), in order to make: times(func,2) equivalent to lambda x:func(func(x)) and times(func,5) equivalent to lambda x:func(func(func(func(func(x))))) Is there such a tool ...
0
votes
1answer
95 views

php pass value from class filter function to function

I have the following, but I can't figure out how to pass the $type variable to the second checkUkPhone function or figure out how to reference it. Any ideas? public function ...
2
votes
2answers
437 views

How do I properly define an empty string in haskell?

I'm having a problem with my program and I was able to isolate the problem. I managed to reduce it to this simpler problem. Lets say I have the function fn:: String -> String fn (x:xs) | null ...
1
vote
2answers
391 views

Use of the identity function in JavaScript

I use the identity function in all my JavaScript programs: function identity(value) { return value; } The reason is that I often need differentiate between primitives types (undefined, null, ...
10
votes
4answers
646 views

In Haskell, + is a function, (+ 2) is a function, (+ 2 3) is 5. What exactly is going on there?

How is this possible, what is going on there? Is there a name for this? What other languages have this same behavior? Any without the strong typing system?
0
votes
5answers
139 views

is this a good example of a closure?

I saw this as an example on MDN and didn't understand why this was a Good Thing (TM). function makeSizer(size) { return function() { document.body.style.fontSize = size + 'px'; ...
3
votes
1answer
122 views

How do I define a function def which accepts arguments and returns a value?

I would like to be able to define a function which accepts an argument (e.g. a File object), and returns something (e.g. a Boolean), and then pass that function (not the boolean!) to another function ...
0
votes
1answer
519 views

PL/SQL passing functions as parameters

I've programmed in PL/SQL during half an year and I had the impression it's a quite plain programming language (IMHO). Although I've stumbled upon interesting articles, like this one (bit.ly/KO4CoP, I ...
1
vote
1answer
72 views

using map or similar to update a dictionary when not using a class

When one is not using methods, what is the best, way to achieve the following. have a single function for adding items to a dictionary use that function when adding multiple items to the dictionary ...
4
votes
3answers
283 views

Does the use keyword in PHP closures pass by reference?

For example, if I do this: function bar(&$var) { $foo = function() use ($var) { $var++ }); $foo(); } $my_var = 0; bar($my_var); Will $my_var be modified? If not, how do ...
0
votes
2answers
203 views

My list type in haskell

I try to create an own list type in haskell but, my implementation contains errors. What is the proper way to do this nice. Please explain me a bit. Thank you. My code: data List a = EmptyList | ...
3
votes
2answers
97 views

Is there a way to determine if a JavaScript function has side effects? [closed]

Given a Javascript function, is it possible to verify that the function has no side effects; i.e., that the function does not change the value of any variables that are declared outside the function's ...
1
vote
2answers
152 views

How to check if two neighbors (element) in a string/array are the same

Well basically, I'm having a problem, how to make a function in haskell to work like this: to take the first element of a string, then take the second one and compare them, then the function should ...

1 2 3