Tagged Questions
The functors tag has no wiki summary.
54
votes
10answers
31k views
C++ Functors - and their uses
I keep hearing a lot about functors in C++, can someone give me an overview as to what they are and in what cases they would be useful?
18
votes
1answer
500 views
Why do we have map, fmap and liftM?
map :: (a -> b) -> [a] -> [b]
fmap :: Functor f => (a -> b) -> f a -> f b
liftM :: Monad m => (a -> b) -> m a -> m b
Why do we have three different functions that ...
15
votes
2answers
272 views
Why are the STL functors themselves templated and not their function call operator?
The STL functors are implemented like this:
template<class T>
struct less{
bool operator()(T const& lhs, T const& rhs){
return lhs < rhs;
}
};
This makes us mention the ...
10
votes
5answers
1k views
Can ML functors be fully encoded in .NET (C#/F#)?
Can ML functors be practically expressed with .NET interfaces and generics? Is there an advanced ML functor use example that defies such encodings?
Answers summary:
In the general case, the answer ...
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 ...
6
votes
2answers
282 views
Understanding functors in OCaml
I'm quite stuck with the following functor problem in OCaml. I paste some of the code just to let you understand. Basically
I defined these two modules in pctl.ml:
module type ProbPA = sig
...
6
votes
4answers
2k views
Functors when should I use them whats their intended use
I Just can't seem to wrap my head around them.
As I understand it's dynamicly adding logic to a class. Are classes within the framework prepaired for this?
Why should I just extend the class and add ...
5
votes
6answers
428 views
How can I abstract a common Haskell recursive applicative functor pattern
While using applicative functors in Haskell I've often run into situations where I end up with repetitive code like this:
instance Arbitrary MyType where
arbitrary = MyType <$> arbitrary ...
5
votes
2answers
307 views
“can't existentially abstract over parameterized type…”
I was messing around with Scala 2.8 for fun and trying to define a pimp which adds an "as" method to type constructors, allowing to convert from one functor to another (please overlook the fact that ...
5
votes
2answers
292 views
How to use objects as modules/functors in Scala?
I want to use object instances as modules/functors, more or less as shown below:
abstract class Lattice[E] extends Set[E] {
val minimum: E
val maximum: E
def meet(x: E, y: E): E
def join(x: ...
5
votes
3answers
405 views
Function pointers to member functions in C++
I need to call a method that expects a function pointer, but what I really want to pass to it is a functor. Here's an example of what I'm trying to do:
#include <iostream>
#include ...
3
votes
3answers
215 views
Using monads, monoids, functors and arrows in practice
I recently ran into this post about useful resources for different aspects of functional programming, such as monads and monoids, etc.
But the question is - what use can an average programmer make ...
3
votes
6answers
158 views
c++ functor for deleting pointers seems to work
Elsewhere the following was suggested for a functor for deleting pointers in a vector
struct DeleteFromVector
{
template <class T>
void operator() ( T* ptr) const
{
...
3
votes
10answers
617 views
Function pointers in embedded systems, are they useful?
In an interview they asked me if using function pointers would be beneficial (in terms of speed) when writing code for embedded systems? If so what is the benefit? Speed, readability, maintenance?
3
votes
2answers
295 views
Perform argument substitution on nested boost::bind without composition
Suppose I have a function which takes a nullary functor as an argument:
void enqueue( boost::function<void()> & functor );
I have another function which takes an int and does something ...
3
votes
1answer
520 views
C++ Templated Functor (based on Modern C++ Design) compile error
Based on chapter 5 (Generalized Functors) from the book "Modern C++ Design,"
I'm trying to write a Functor template. Before asking me "why don't I just use Boost's bind or Loki straight up?" the ...
2
votes
5answers
1k views
g++ rejects my simple functor with “expected a type, got 'xyz'”
I've been playing about with functors in C++. In particular, I've got a vector of pairs I'd like to sort by the first element of the pair. I started off writing a completely specialised functor (i.e. ...
1
vote
4answers
64 views
using function object though function pointer is required
I have to use some legacy code expecting a function pointer, let's say:
void LEGACY_CODE(int(*)(int))
{
//...
}
However the functionality I have is within a functor:
struct X
{
Y member; ...
1
vote
3answers
100 views
combining 3 functors into 1
I have 3 functors and was wondering if these can be combined into 1, perhaps as a template.
is it possible? if so, how would I do it. thx!
struct less_than
{
bool operator()(double ...
1
vote
1answer
87 views
Problem with a Functor instance over the keys in Map from Data.Map
I'm trying to write Eric Kidd's and Sigfpe's code for a probability monad using Data.Map as a backend but I'm stuck with a Functor instance.
I have a data type which is a probability table:
newtype ...
1
vote
1answer
150 views
Anonymous Functors in G++?
I have some code that works in VS2008 but not in G++ that works as:
struct IIterationFunctor
{
virtual bool operator()( SStateInfo& rStateInfo ) = 0;
virtual ~IIterationFunctor() { }
};
...
1
vote
2answers
113 views
How does calling this function object work?
I have a class
class fobj{
public:
fobj(int i):id(i) {}
void operator()()
{
std::cout<<"Prints"<<std::endl;
}
private:
int id;
};
template<typename ...
1
vote
2answers
268 views
Practise Questions for Templates,Functors,CallBack functions in c++?
I have been reading templates,functors,callback function for the past week and have referred some good books and articles.
I however feel that, unless I can get good practice - programming in ...
1
vote
2answers
582 views
how to use binder and bind2nd functors?
How to use binder2nd, bind2nd, and bind1st?
More specifically when to use them and are they necessary?
Also, I'm looking for some examples.
0
votes
3answers
87 views
Function Call Syntax?
Reading "C++ Templates: The Complete Guide" Section 22.5.3
I'm confused over the syntax the author uses for function pointers. I believe this syntax is called the "Function Call Syntax"? I feel like ...
0
votes
1answer
57 views
boost::function template class
This program is designed to make a library to make it easy for C++ programmers to simulate circuits. Any feedback is appreciated. The error that I'm faced with puzzles me to no end.
wire.h file
...
0
votes
2answers
112 views
Problem passing C++ comparator functor as a parameter
Suppose I have a template class called LinkedList that also contains a method called Sort
I want to be able to have a default comparator which is assuming the type T can be compared with the < ...
0
votes
0answers
280 views
Different behavior of functors (copies, assignments) in VS2010 (compared with VS2005)
When moving from VS2005 to VS2010 we noticed a performance decrease, which seemed to be caused by additional copies of a functor.
The following code illustrates the problem. It is essential to have ...
0
votes
1answer
492 views
C++ Functors and Zero
First a disclaimer, I am replacing a bunch of code which uses boost::function and boost::bind. However, I am moving to a codebase which does not allow rtti. I would like to keep using boost but ...
-2
votes
2answers
105 views
Function pointers and functors
Are function pointers functors ? Is there a virtual functor in use that helps sibling functors compile silently ?