Tagged Questions

An object that can be invoked or called as though it were a function.

learn more… | top users | synonyms

61
votes
11answers
4k views

In Functional Programming, what is a functor?

I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
32
votes
1answer
513 views

Fun with repeated fmap

I was playing around with functors, and I noticed something interesting: Trivially, id can be instantiated at the type (a -> b) -> a -> b. With the list functor we have fmap :: (a -> b) ...
26
votes
1answer
828 views

Why is 'X x; x();' allowed, when 'X' defines a conversion to function pointer, but not, when it defines a conversion to a functor?

void f(int){} typedef void (*f_ptr)(int); struct Functor{ void operator()(int){} }; struct X{ operator f_ptr(){ return f; } }; struct Y{ operator Functor(){ return Functor(); } }; int ...
25
votes
3answers
648 views

Good examples of Not a Functor/Functor/Applicative/Monad?

While explaining to someone what a type class X is I struggle to find good examples of data structures which are exactly X. So, I request examples for: A type constructor which is not a Functor. A ...
24
votes
6answers
780 views

Why use functors over functions?

Compare double average = CalculateAverage(values.begin(), values.end()); with double average = std::for_each(values.begin(), values.end(), CalculateAverage()); What are the benefits of using a ...
23
votes
5answers
753 views

Monads as adjunctions

I've been reading about monads in category theory. One definition of monads uses a pair of adjoint functors. A monad is defined by a round-trip using those functors. Apparently adjunctions are very ...
20
votes
6answers
374 views

Why do several of the standard operators not have standard functors?

We have: std::plus (+) std::minus (-) std::multiplies (*) std::divides (/) std::modulus (%) std::negate (-) std::logical_or (||) std::logical_not (!) std::logical_and (&&) std::equal_to ...
18
votes
2answers
364 views

Haskell : An example of a Foldable which is not a Functor?

A Foldable instance is likely to be some sort of container, and so is likely to be a Functor as well. Indeed, this says A Foldable type is also a container (although the class does not technically ...
18
votes
7answers
943 views

Why applicative functors in Haskell and functional programming

I'm new to Haskell. Now I'm reading about functors and applicative functors. Ok, I understand functors and how I can use them, but I don't understand why applicative functors are useful and how I can ...
12
votes
1answer
235 views

Trying to implement Data.Either

To help me learn Applicative Functors and Functors I thought it would be good fun to see how Either is implemented with the typeclasses Functor and Applicative. Obviously I could just go ahead and ...
12
votes
10answers
829 views

Help Haskell functors sink in

Learn You a Haskell has an example about functors. I can read LYAH, and text, and figure out what is supposed to happen -- but I don't know enough to write something like this. I'm finding this ...
11
votes
6answers
288 views

What functionality do you get for free with Functors or other type-classes?

I read an article which said: Providing instances for the many standard type-classes [Functors] will immediately give you a lot of functionality for practically free My question is: what is this ...
11
votes
4answers
158 views

Haskell Functor implied law

Typeclassopedia says: "A similar argument also shows that any Functor instance satisfying the first law (fmap id = id) will automatically satisfy the second law as well. Practically, this means that ...
11
votes
5answers
5k views

function passed as template argument

I'm looking for the rules involving passing C++ templates functions as arguments. This is supported by C++ as shown by an example here: #include <iostream> void add1(int &v) { v+=1; } ...
10
votes
9answers
2k views

passing functor as function pointer

I'm trying to use a C library in a C++ app and have found my self in the following situation (I know my C, but I'm fairly new to C++). On the C side I have a collection of functions that takes a ...
9
votes
4answers
153 views

Why does the Applicative instance for Maybe give Nothing when function is Nothing in <*>

I am a beginner with haskell and am reading the Learn you a haskell book. I have been trying to digest functors and applicative functors for a while now. In the applicative functors topic, the ...
9
votes
4answers
1k views

Would you please explain OCaml functors to me?

I don't know much about OCaml, I've studied F# for some time and quite understand it. They say that F# misses functor model, which is present in OCaml. I've tried to figure out what exactly functor ...
9
votes
6answers
1k views

Using STL algorithms, is it better to pass a function pointer or a functor?

Which of these 2 methods is better and why? Method 1: void fun(int i) { //do stuff } ... for_each(a.begin(), a.end(), fun); Method 2: class functor { public: void operator()(int i); }; ... ...
8
votes
3answers
448 views

Applicative without a functor

I have a type Image which is basically an c-array of floats. It is easy to create functions such as map :: (Float -> Float) -> Image -> Image, or zipWith :: (Float -> Float -> Float) ...
8
votes
5answers
303 views

Can I write a C++ functor that accepts both a raw pointer and a smart pointer?

Given the following: struct Foo { int bar() const; }; struct IsEqual : public std::unary_function<Foo*, bool> { int val; IsEqual(int v) : val(v) {} bool operator()(const Foo* ...
8
votes
2answers
8k views

Visual Studio 2010 and std::function

I have this code: #include <iostream> #include <functional> struct A { int operator()(int i) const { std::cout << "F: " << i << std::endl; return i ...
8
votes
6answers
879 views

SIMD or not SIMD - cross platform

I need some idea how to write a C++ cross platform implementation of a few parallelizable problems in a way so I can take advantage of SIMD (SSE, SPU, etc) if available. As well as I want to be able ...
8
votes
11answers
3k views

Why override operator()?

In the Boost Signals library, they are overloading the () operator. Is this a convention in C++? For callbacks, etc.? I have seen this in code of a co-worker (who happens to be a big Boost fan). Of ...
7
votes
3answers
297 views

Scala — How to use Functors on non-Function types?

While reading the description of Functors on this blog: https://hseeberger.wordpress.com/2010/11/25/introduction-to-category-theory-in-scala/ there is a generic definition of Functor and a more ...
7
votes
1answer
121 views

std::for_each usage on member function with two args

Here's a general idea of how my class is defined as ( it performs other operations than what is mentioned below) struct Funktor { Funktor(int val):m_val(val){} bool operator()(int arg1, int ...
7
votes
1answer
136 views

why does ptr_fun find this ambiguous even when template parameters are given?

So, here is some basic code which illustrates my question: #include <functional> int func(int x) { return x; } int func(int x, int y) { return x + y; } int main() { ...
7
votes
3answers
285 views

Why can C++ functors be preferable to objects with named methods?

I recently have got excited by functors and been using them all over the place. Then the situation arose where I needed my functor to perform two different operations and I thought about adding ...
7
votes
2answers
541 views

Making (a, a) a Functor

How can I make (a, a) a Functor without resorting to a newtype? Basically I want it to work like this: instance Functor (a, a) where fmap f (x, y) = (f x, f y) But of course that's not a legal ...
7
votes
2answers
223 views

What case is better?

I have a list of MyClass: struct MyClass { bool is_old_result(int lifetime); }; std::list<MyClass> results; int lifetime = 50; // or something else What case of removing is better (c++ ...
7
votes
1answer
213 views

Using functors as interfaces in OCaml

I'm developing some algorithms in OCaml which need some parts to be "pluggable" so that part of the computation is left to specific computators. Just to make an example suppose I have a signature ...
7
votes
3answers
735 views

Are all Haskell functors endofunctors?

I'm a bit confused, and need someone to set me straight. Lets outline my current understanding: Where E is an endofunctor, and A is some category: E : A -> A. Since all types and morphisms in ...
7
votes
1answer
346 views

C++ weird syntax spotted in Boost template parameters

I was having a look at the "Function" class documentation in Boost, and stumbled across this: boost::function<float (int x, int y)> f; I must admit this syntax is highly confusing for me. ...
7
votes
4answers
670 views

C++: Are YOU using Loki or Boost for functors?

I've been reading Alexandrescu's book, Modern C++ design , and I've been quite impressed by the techniques he uses, so I wanted to add Loki library to my application. However, after further ...
7
votes
4answers
302 views

In C++ what does it mean for a compiler to “inline” a function object?

In the wikipedia article about function objects it says such objects have performance advantages when used with for_each because the compiler can "inline" them. I'm a bit foggy on exactly what this ...
7
votes
7answers
2k views

What is the difference between a Functor and the Command pattern?

I am very familiar with the Command pattern, but I don't yet understand the difference in theory between a Functor and a command. In particular, I am thinking of Java implementations. Both are ...
6
votes
5answers
122 views

Does a virtual keyword with operator()() make sense? (functors)

Consider I have a hierarchy defined as below class Strategy { public: virtual void Run(); }; class StrategyA : public Strategy { public: virtual void Run(); }; class StrategyB : public ...
6
votes
7answers
272 views

Should I use functions or stateless functors?

These 2 piece of code do same thing. And it will be used in sort function as you can see. Which is better? I usually write latter one. But I saw some coders do it like former one. struct val_lessthan ...
6
votes
3answers
360 views

How to document a function object with doxygen?

How should I document a function object (AKA functor) with doxygen? It feels misleading to just document it as a regular class. I find it much better to think of a function object as a function with ...
6
votes
1answer
288 views

Passing C++ object to C++ code through Python?

I have written some physics simulation code in C++ and parsing the input text files is a bottleneck of it. As one of the input parameters, the user has to specify a math function which will be ...
6
votes
4answers
175 views

reusable condition/expression classes

I have needed in several occasions some classes to represent and manipulate conditions (typically in a UI so the user builds a query by combining different condition types and then the code can ...
6
votes
4answers
1k views

Best Java Functor lib: JGA, commons functor, mango, or…?

I am interested in using functors (function objects) in Java. With quick googling I found these 3 packages: Java Generics Algorithms: http://jga.sourceforge.net/ Commons functor: ...
6
votes
5answers
5k views

demote boost::function to a plain function pointer

want to pass boost::bind to a method expecting a plain function pointer (same signature). typedef void TriggerProc_type(Variable*,void*); void InitVariable(TriggerProc_type *proc); ...
5
votes
2answers
66 views

Is there a built-in Java type that guarantees an execute(T t) method?

It seems the need for a type like the following would be so ubiquitous that something like it should be already built into Java: public interface Executer<T> { void execute(T object); } It ...
5
votes
3answers
144 views

Modules and record fields

I have stumbled across a rather simple OCaml problem, but I can't seem to find an elegant solution. I'm working with functors that are applied to relatively simple modules (they usually define a type ...
5
votes
2answers
292 views

How can boost::bind call private methods?

boost::bind is extremely handy in a number of situations. One of them is to dispatch/post a method call so that an io_service will make the call later, when it can. In such situations, boost::bind ...
5
votes
4answers
342 views

Detailed difference between functor's call and function call?

The key reason this works is that for_each () doesn’t actually assume its third argument to be a function. It simply assumes that its third argument is something that can be called with an ...
5
votes
1answer
206 views

Functors with multiple arguments in OCaml

I've the following situation: module type M = sig type s = ... end module Make(P: Something) : (M with type s = P.t) = struct type s = P.t ... end that works fine to generate modules of M ...
5
votes
2answers
313 views

Is there any standard delete functor?

I am looking for a functor that deletes its argument: template<class T> struct delete_functor { void operator()(T* p) { delete p; } }; Is there something like this in std, ...
5
votes
6answers
250 views

Can I write functors using a private nested struct?

Given this class: class C { private: struct Foo { int key1, key2, value; }; std::vector<Foo> fooList; }; The idea here is that fooList can be ...
5
votes
4answers
730 views

How can it be useful to overload the “function call” operator?

I recently discovered that in C++ you can overload the "function call" operator, in a strange way in which you have to write two pair of parenthesis to do so: class A { int n; public: void ...

1 2 3 4