Tagged Questions

Higher-order functions are functions that take or produce other functions as arguments or results.

learn more… | top users | synonyms

25
votes
14answers
2k views

What are some interesting uses of high order functions?

I'm currently doing a Functional Programming course and I'm quite amused by the concept of high-order functions and functions as first class citizens. However, I can't yet think of many practically ...
15
votes
1answer
297 views

Polymorphism within higher-order functions?

I have an algebraic data type with some constructors that hold comparable values, and some constructors that don't. I wrote some comparison functions that work like the standard (==) and (/=) ...
12
votes
3answers
778 views

Finding maximum of a list of lists by sum of elements in Python

What's the idiomatic way to do maximumBy (higher order function taking a comparison function for the test), on a list of lists, where the comparison we want to make is the sum of the list, in Python? ...
11
votes
2answers
507 views

Common recursion pattern

I'm getting used to Haskell's higher-order functions. Usually I can replace explicit patterns of recursion with functions like map, fold, and scan. However, I often run into the following recursion ...
11
votes
2answers
693 views

higher level functions in R - is there an official compose operator or curry function?

I can create a compose operator in R: `%c%` = function(x,y)function(...)x(y(...)) To be used like this: > numericNull = is.null %c% numeric > numericNull(myVec) [2] TRUE FALSE but I ...
10
votes
2answers
131 views

In Perl, what is the most reliable way to determine a coderef's package?

I have a number of higher order utility functions that take in a code reference and apply that code to some data. Some of these functions require localizing variables during the execution of the ...
9
votes
2answers
793 views

High order functions in Clojure

Clojure is awesome, we all know this, but that's not the point. I'm wondering which is the idiomatic way of creating and managing high-order functions in a Haskell-like way. In Clojure I can do: ...
9
votes
16answers
2k views

What do we call this (new?) higher-order function?

I am trying to name what I think is a new idea for a higher-order function. To the important part, here is the code in Python and Haskell to demonstrate the concept, which will be explained afterward. ...
8
votes
4answers
160 views

What is a general scheme for writing a function in pointfree style?

I am working through the 20 Intermediate Haskell Exercises at the moment, which is quite a fun exercise. It involves implementing various instances of the typeclasses Functor and Monad (and functions ...
8
votes
4answers
358 views

repeatedly applying a function until the result is stable

I want to repeatedly apply a function simplify' until the result is "stable" (i.e. simplify'(x) == x): simplify :: Expr -> Expr simplify expr = let iterations = iterate simplify' expr ...
8
votes
8answers
539 views

Higher order functions in C

Is there a "proper" way to implement higher order functions in C. I'm mostly curious about things like portability and syntax correctness here and if there are more than one ways what the merits and ...
7
votes
2answers
133 views

Using constructor where function expected

Having two simple classes taking Int as an argument: case class Foo(i: Int) class Bar(j: Int) I can say: List(1,2,3) map Foo Which works fine and is equivalent to a bit more verbose: ...
7
votes
4answers
307 views

When are lambda forms necessary in Haskell?

I'm a newbie to Haskell, and a relative newbie to functional programming. In other (besides Haskell) languages, lambda forms are often very useful. For example, in Scheme: (define (deriv-approx f) ...
7
votes
1answer
239 views

Calling Clojure higher-order functions

If I define a function that returns a function like this: (defn add-n [n] (fn [x] (+ x n))) I can then assign the result to a symbol: (def add-1 (add-n 1)) and call it: (add-1 41) ;=> 42 ...
7
votes
3answers
268 views

Reverse currying?

I'd like to compose functions in a certain way. Please consider these 2 functions in pseudocode (not F#) F1 = x + y F2 = F1 * 10 // note I did not specify arguments for F1, 'reverse curry' for lack ...
7
votes
4answers
492 views

Use of Clojure macros for DSLs

I am working on a Clojure project and I often find myself writing Clojure macros for DSLs, but I was watching a Clojure video of how a company uses Clojure in their real work and the speaker said that ...
7
votes
4answers
208 views

Is lambda a type of higher order function?

I saw this question on one of the job postings and its asking what's a lambda function and what its relation to higher order function. I already know how to use lambda function but not quite confident ...
6
votes
2answers
98 views

Higher Order Functions vs loops - running time & memory efficiency?

Does using Higher Order Functions & Lambdas make running time & memory efficiency better or worse? For example, to multiply all numbers in a list : nums = [1,2,3,4,5] prod = 1 for n in nums: ...
6
votes
4answers
132 views

Can Java MethodHandles be considered the same as first class functions?

Java Method Class and Java 7's MethodHandle Class both refer to objects that are associated to methods, but still they are rarely used and when a function needs to be passed to another, it is ...
6
votes
1answer
179 views

Unsure of how to design a useful library using combinators

I've been reading about combinators and seen how useful they are (for example, in Haskell's Parsec). My problem is that I'm not quite sure how to use them practically. Here's an outline of the ...
6
votes
4answers
136 views

map for hashes in Perl

Is there a hash equivalent for map? my %new_hash = hash_map { new_key($a) => new_val($b) } %hash; I know that I could loop through the keys.
6
votes
3answers
245 views

type of high order functions

if I specify the (I think) correct type for a high order function the OCaml compiler rejects the second usage of that function. The code let foo ():string = let f: ('a -> string) -> 'a -> ...
5
votes
1answer
87 views

Transform list in to map of element -> list(element) in scala

I have a list of documents, where a Document has an owner which is a User. What is the most elegant way of transforming this list into a Map of Users to the List of Documents that they own? So for ...
5
votes
2answers
125 views

Automatically and deterministicly testing a function for associativity, commutativity etc

Is it possible to construct a higher order function isAssociative that takes another function of two arguments and determines whether that function is associative? Similar question but for other ...
5
votes
4answers
452 views

“filter” higher order function in C++

Does C++ standard library and/or Boost have anything similar to the filter function found in functional languages? The closest function I could find was std::remove_copy_if but it seems to be doing ...
5
votes
3answers
376 views

Does “Value Restriction” practically mean that there is no higher order functional programming?

Does "Value Restriction" practically mean that there is no higher order functional programming? I have a problem that each time I try to do a bit of HOP I get caught by a VR error. Example: let ...
4
votes
2answers
75 views

Are higher order functions on collections guaranteed to be executed sequentially?

In another question, a user suggested to write code like to that: def list = ['a', 'b', 'c', 'd'] def i = 0; assert list.collect { [i++] } == [0, 1, 2, 3] Such code is, in other languages, ...
4
votes
4answers
177 views

A problem with higher order functions and lambdas in C++0x

I have a program where I must print many STL vectors on the screen after doing some calculation on each component. So I tried to create a function like this: template <typename a> void ...
4
votes
1answer
139 views

Does this higher order function have a name?

I see this pattern everywhere in my code, and in libraries, yet there appears to be no name or abstraction of it that I can find anywhere. Example (pseudocode) T foo( T x, void f(T&) ) { T y ...
4
votes
5answers
415 views

fold_tree in OCaml

As You may know, there are higher order functions in OCaml, such as fold_left, fold_right, filter etc. On my course in functional programming had been introduced function named fold_tree, which is ...
4
votes
1answer
436 views

Haskell FlatMap

I am a beginner interested in Haskell, and I have been trying to implement the flatmap (>>=) on my own to better understand it. Currently I have flatmap :: (t -> a) -> [t] -> [a] flatmap ...
3
votes
4answers
87 views

How do I use array_filter() for functional programming in PHP?

Say I have an array of tags $all_tags = array('A', 'B', 'C'); And I want to create a set of URLs with $_GET variables. I'd like the links to be: 'A' linking to "index.php?x[]=B&x[]=C" 'B' ...
3
votes
3answers
121 views

JavaScript reduce can't handle Math functions?

I'm trying an obvious task: var maxVal = [ 1, 2, 3, 4, 5 ].reduce( Math.max, 0 ); and get: NaN as the result. To make it work I have to make an anonymous function this way: var maxVal = [ 1, 2, ...
3
votes
3answers
64 views

Using Perl's map with custom functions

I have a Perl script that has (skipping many irrelevant lines) use HTML::Entities; my @keys = ('ID', 'first', 'last'); # data is not actually constant my @encodedKeys = map(encode_entities, @keys); ...
3
votes
5answers
116 views

Locking on an interned string?

Update: It is acceptable if this method is not thread safe, but I'm interested in learning how I would make it thread safe. Also, I do not want to lock on a single object for all values of key if I ...
3
votes
4answers
204 views

How can I write a higher order function like map, or reduce in java?

I read an article on Joel On Software about the idea of using higher order functions to greatly simplify code through the use of map and reduce. He mentioned that this was difficult to do in Java. The ...
3
votes
3answers
281 views

Erlang: is it possible to write the minimum function as a list fold?

Given a function: min(A, B) when A =< B -> A; min(_A, B) -> B. can I use this in the function foldlin a similar fashion to this: lists:foldl(fun min/2, 0, ...
3
votes
3answers
115 views

Web programming with higher order functions

We are learning higher-order functions in our class and our professor mentioned that they can be useful for web programming. I'm unsure as to what cases in which that would be true and was wondering ...
3
votes
3answers
163 views

Functional C# - using or returning Action's

Browsing the net for better fault handling in C#, I've com across the following to implementation strategies. The first one is natural to me, while the other implementation I'm not certain what its ...
3
votes
4answers
176 views

Scala compiler says my method is recursive in case when implicits and anonymous class is used

I want to be able to write code like 10 times { doSomething } So I thought I could do that with implicits. When i execute the following code in the Scala REPL it gets defined correctly ...
3
votes
2answers
451 views

Haskell programing: map and fold on search trees

I have a search tree thats defined as data (Ord a) => Stree a = Null | Fork(Stree a) a (Stree a) deriving Show and I have to define two functions, mapStree: mapStree :: (Ord b, Ord a) => ...
2
votes
1answer
173 views

reversing a list in OCaml using fold_left/right

UPDATE - Solution Thanks to jacobm for his help, I came up with a solution. // Folding Recursion let reverse_list_3 theList = List.fold_left (fun element recursive_call -> ...
2
votes
2answers
100 views

Why does fold have the following type in Scala?

I was looking at the way fold is defined for immutable.Set: def fold [A1 >: A] (z: A1)(op: (A1, A1) ⇒ A1): A1 yet foldLeft is defined as: def foldLeft [B] (z: B)(op: (B, A) ⇒ B): B This ...
2
votes
3answers
199 views

Clojure objects and higher-order functions for encapsulation

This is a follow-up to my earlier question. I came up with a bizarre object scheme from my reading of Let Over Lambda and can think of no advantages over protocols, but want to get opinions. I am ...
2
votes
3answers
285 views

Why does map/filter … not work with an Array of Nothing?

Isn't Nothing a subtype of all types? scala> val array = new Array(5) array: Array[Nothing] = Array(null, null, null, null, null) scala> array.map(_ => 42) <console>:9: error: value ...
2
votes
1answer
240 views

Convert higher order function from Python to Haskell

I have the following code: import operator def stagger(l, w): if len(l)>=w: return [tuple(l[0:w])]+stagger(l[1:], w) return [] def pleat(f, l, w=2): return map(lambda p: ...
2
votes
2answers
416 views

Scala ActionListener / anonymous function type mismatch

Attempting to implement code similar to that found in the higher-order-function example from http://www.codecommit.com/blog/scala/scala-for-java-refugees-part-6 val button = new JButton("test") ...
1
vote
1answer
53 views

passing in block to method in Ruby

I would like to pass in an generated(higher order function) to a method to a ruby method . Something like this [].select give_block def give_block lambda { |e| e > 1 } end I get ...
1
vote
1answer
116 views

Haskell higher order function problem

Current Code I have two functions as f1::Int->Int->Int f1 a b | a==1 && b==1 = 1 | otherwise = 0 applying this function to a [Int] by a another function ...
1
vote
3answers
164 views

Problem with implicit conversions and higher-order apply methods in Scala

I am trying to extend String with a new apply method that lets me apply an higher-order function on it. Example: case class A(s:String, f: List[String] => List[String]) val f: List[String] => ...

1 2