The term 'functor' has two common meanings: 1. A functor is an object (in C++, in particular) that can be invoked or called as though it were a function. Functors can contain their own data values, thus allowing the programmer to emulate closures. 2. A mathematical structure which deals ...
0
votes
0answers
5 views
Functor to implement passing by reference instead of std::mem_fun
There are multiple questions out here (argument by reference), with respect to passing by reference here of the object Value<int> in calculate. One solution is not to pass it as a reference, but ...
0
votes
1answer
15 views
Why use functors? Cant i just pass function reference instead?
template <typename Fn>
void do_stuff(Fn f, int a, int b) {
int c = f(a, b);
do_something(c);
}
Then i call:
do_stuff(Add(),1,2);
here Add() is a functor.
As i ...
-2
votes
1answer
40 views
Where is thee callback happening in this code?
class Add
{
Add(){cout<<"ctor";}
void operator()(int a ,int b){return a+b;}
}
int main()
{
Add(3,4);
}
Add is the functor.And functor can help in ...
0
votes
0answers
52 views
Storing methods/members from different class in a variable to access them later?
I want to make a keybinding configuration menu for my application to enable users to map specific buttons/axes/keys/etc to actions in my application.
I have, for example a joystick class and a ...
1
vote
0answers
94 views
Private member functors for a C++ class
I'm writing a class where I would like to have some member methods that have some data associated with them, specifically which mechanical systems of a robot they require use of. I thought I could ...
0
votes
2answers
39 views
Modifying functor variable when using incremental spatial searching with cgal
I've modified an example given by the computational geometry cgal library (link) that demonstrates incremental searching on a 2D plane (Section 49.3.2). The example uses a functor to set spatial ...
1
vote
1answer
43 views
C++ functor binding
i tried to use the old bind2nd function in this way:
template<typename T>
class printer
{
public:
void operator()(T a, string& kd)
{
cout<<a<<endl;
}
};
int ...
0
votes
2answers
44 views
Template function accepting callable functors with X parameters
I'm writing a hosted C++ program that runs user-written C-code compiled on the fly. It's absolutely vital that certain typical exceptions are caught from the C-code and processed/ignored.
To do this, ...
1
vote
1answer
49 views
Boost: Threading and mutexes in a functor
I'm trying something simple with threads and mutexes in C++ with boost.
This is the code:
#include <iostream>
#include <boost/thread/thread.hpp>
class mutex_test
{
private:
...
1
vote
2answers
38 views
C++ functor compile error
I have the following main program, which when compiled gives this error:
Undefined symbols for double squarer(double, SineFunctor&)
Why can't the linker find the function squarer?
include ...
0
votes
2answers
26 views
Compilation Error when using tr1::function
The purpose is to execute CVS890Executor::do_full_frame when calling the m_callback_fn within CDevVS890.
Following is the incriminated code:
"CDevVS890.h"
typedef std::tr1::function<void (void* ...
3
votes
1answer
46 views
Can a Standard ML functor take another functor as parameter?
I have an implementation of sets and maps as unbalanced binary trees. Because sets and maps are so alike, I actually only wrote an implementation for maps from scratch, and then trivially implemented ...
-1
votes
1answer
66 views
c++ - binding operator= member of std::string
I have a class (let's call it myclass). One of its private member variables is a std::function called myfunctor of return type bool and that takes two arguments:
bool
myfunction
(const ...
0
votes
1answer
54 views
C++ Passing a function to a function using functors
I have two functors:
class SFunctor {
public:
SFunctor(double a) { _a = a; }
double operator() (double t) { return _a * sin(t); }
private:
double _a;
};
class CFunctor {
public:
...
1
vote
2answers
71 views
Using the return type of a functor to declare return type of a template method, without decltype
I would like to avoid the need to specify the return type when calling a template member function. The 'decltype' keyword combined with 'auto' can accomplish this, but unfortunately we do not have a ...
-1
votes
1answer
54 views
C++ function gets specific functor but uses function from base class [closed]
class A {
virtual void operator()(int a, int b) { cout << a + b << endl; }
};
class B : A {
void operator()(int a, int b) { cout << a - b << endl; }
};
void f(int a, int ...
0
votes
2answers
71 views
What is distinctive for functors compared to normal functions taking values as arguments
I am newbie for the concept but as I search the difference and the good of the functors is that they are able to store values inside and initialize these values from the construction but normal ...
4
votes
1answer
88 views
How do you chain an arbitrarily long series of atomic parsers using applicatives?
Let's say I have this parser type:
newtype Parser a = Parser { runParser :: String -> Maybe (a, String) }
And this atomic parser unit:
satisfy :: ( Char -> Bool ) -> Parser Char
satisfy g ...
0
votes
2answers
74 views
Lint warnings when using std::unary_function
when checking a functor which is derived from std::unary_function as follows
struct IsInterestingMsg : public std::unary_function<string,bool>
Lint ejects the following info/warnings:
1790: ...
4
votes
2answers
131 views
C++: pass function with arbitrary number of parameters as a parameter
long time browser, first time asker here. I've written a number of scripts for doing various 1D numerical integration methods and compiled them into a library. I would like that library to be as ...
6
votes
1answer
187 views
example uses scalaz.Lens's modf, modp and xmap
There are number of great tutorials and posts out there covering the more straightforward of Lens's methods, e.g. Cleaner way to update nested structures; can anyone provide example uses for these ...
0
votes
1answer
86 views
How to use the factory pattern with functors?
I have a set of functors for calculating specific stuff on ranges on objects. Essentially, each functor implements operator():
template <typename Iterator1,
typename Iterator2> double ...
3
votes
1answer
56 views
Defunctorizer for OCaml
In the past, Julien Signoles programmed ocamldefun, a program that took OCaml source code with functors and obtained an equivalent program without functors. This is useful for optimization, analysis ...
1
vote
1answer
48 views
Why does this functor's operator() need the trailing const modifier?
I am coming back to C++ (or well, technically, Objective-C++) after many years absence, so please bear with me. I am trying to use templates to implement a solution that would otherwise require a ton ...
4
votes
1answer
127 views
How does fmap work for List
Learn you a haskell gives description about Functor typeclass.
I can see that for list, it's implemented as follows:
instance Functor [] where
fmap = map
But how does this work ?
In the ...
0
votes
0answers
32 views
Functor as function argument fails [duplicate]
I try to give a function a functor to be more flexible to adjust certain things in my class.
Here is some Code:
struct BC {
real operator()(real x, real y, real z) {
return sin(2 * M_PI * ...
3
votes
3answers
153 views
can't initialize functor objects when passing derived class in C++
This question stems from a previous question I asked here. I cannot use any external libraries or the C++ 11 spec. Meaning I can't use std::bind, std::function, boost::bind,boost::function etc. I have ...
0
votes
0answers
119 views
C++ for_each string iterators: loops out of range
for my C++ class at University, i have to implement a simple Word Counter by using algorithms and containers of Standard Template Library (STL).
The functionality has to be encapsulated with in a ...
0
votes
1answer
54 views
use first-class module in OCaml
module type Arity =
sig
val arity : nat (* in my real code it has another type *)
end
module S =
functor (A : Arity) -> struct
let check = ...
end
I would like to use the function check ...
1
vote
2answers
66 views
std::map of member functions with different args
I have a DeviceSettingsManager class that looks like:
class DeviceSettingsManager
{
int32_t PropertyA();
void SetPropertyA(int32_t prop);
std::string PropertyB();
void ...
0
votes
1answer
52 views
c++ function proxy for execution control
I want to make a "function proxy" that:
It is a function object.
It's return type and argument type(s) are "inherited" automatically
from a given "base" function type as template argument. the ...
0
votes
1answer
59 views
Functor with default-value as parameter in function in the context of templated class and function :-)
The ingredients:
A matrix-class templated on the matrix-element-type, intended to work with sub-matrices as well as double/float etc.
A matrix-member-method that returns the "true" diagonal, i.e. ...
0
votes
3answers
125 views
c++ vector of function pointers push_back in case of different classes
I am having a vector of function pointers in one class and to it i want to pass address of function in some other class. The following implementation gives error c2664. What is the correct way?
class ...
3
votes
5answers
127 views
Boolean functors in lisp
I find myself in a situation when I need to combine several predicate into one. Is there a standard way of doing this, something similar to compliment?
Suppose there are several simple predicates ...
3
votes
2answers
116 views
Calling printf with a templated functor segfaults (64-bit only, valgrind clean in 32-bit)
I am presently debugging some C++ code written in the late 90's that parses scripts to load data, perform simple operations, and print results etc.
The people who wrote the code used functors to map ...
0
votes
1answer
130 views
std::sort functor one line
I have declared a functor and a made a call so st::sort with that functor as a parameter. Code:
struct
{
bool operator() (const CString& item1, const CString& item2){
return ...
2
votes
1answer
22 views
Cannot read functor class in any way
Alright, I'm implementing a dynamic 2-dimensional matrix class. For a basis, this is what I have so far:
template <typename Type>
class dyMatrix {
private:
Type *mat;
int ...
3
votes
1answer
78 views
Defining a class with functor-ish and non-functor-ish functions
I want to define a class m that provides an functor-ish operation with
a type signature like this:
mapify :: (a -> b) -> m a -> m b
I needed some other non-functor-ish operations as well, though. I ...
1
vote
1answer
44 views
What are the ways to implement a map of heterogeneous functions in Java?And their pros and cons?
I want to implement some kind of Command Pattern in Java. I want to have a structure like Map<String commandkey, Function()>. So I have an object (Map, HashMap, LinkedHashMap or whatever ...
0
votes
0answers
85 views
QtConcurrent::run with functor
How to use QtConcurrent::run with function objects? Can you please show me an example how to do that?
1
vote
2answers
70 views
Functors and vector of strings
I'm new to functors theme, so I hope this question will be constructive.
I have array of strings (). I need to calculate the sum of lenghts of these strings this help of functors.
My code:
class ...
0
votes
2answers
171 views
C++11 std::function and std::reference wrapper used for sorting std::set
I have a C++ class, and one of its fields is a std::set of objects. I want to write my own comparison function, or let the user specify one. In C++11 there's a new way to handle generic function ...
0
votes
2answers
78 views
set , and compering/sorting functor or less operator
I have problem with set. I don't know what I'm doing wrong. Maybe some one of you can help me. So lets begin , the output of my program should be :
Iksinski Adam, Kowalski Jan, Nowak Adam, Nowak Jan,
...
0
votes
1answer
84 views
thrust::transform_reduce How can I access iterator within unary op?
I am trying to perform a transform reduce on a vector of structs. The struct contains two numbers. I want the unary function to do something with these two numbers and return a single value for each ...
6
votes
3answers
203 views
How are functors in Haskell related to functors in category theory?
For as far as I understand, a functor is a mapping between two categories, for example from objects in to objects in where and are categories.
In Haskell there is Hask in which the objects are ...
0
votes
1answer
87 views
Inlining and static function call operators
I have a function template parameterized by a template parameter T to give it different behavior depending on what T it is instantiated with. The specific variations desired are very simple, a call ...
12
votes
1answer
321 views
If SML.NET had functors why can't F#?
This question started out from
My translating of "ML for the Working Programmer" (WorldCat) by L. C. PAULSON to F# which uses functors for the examples.
Eventual desire to translate "Purely ...
1
vote
1answer
77 views
Calling Operator() “function call” to return reference to array element
I think I don't really understand what's behind references, and I'd be glad to learn more about those.
I'm writing a math "vector" Class to do basic linear algeabra for numerical simulation. I was ...
5
votes
4answers
119 views
Assign pointer to a function the address of a pointer to function object
Is it possible in C++?
For example I have a pointer to a function that takes no parameters and its return type is void:
void (*f)();
and and a function object:
class A
{
public:
void ...
14
votes
2answers
436 views
What monads can be expressed as Free over some functor?
The documentation for Free says:
A number of common monads arise as free monads,
Given data Empty a, Free Empty is isomorphic to the Identity monad.
Free Maybe can be used to model a ...


