Tagged Questions
The function-object tag has no wiki summary.
16
votes
4answers
3k views
How does template parameter of std::function work? (implementation)
In Bjarne Stroustrup's home page (C++0x FAQ):
struct X { int foo(int); };
std::function<int(X*, int)> f;
f = &X::foo; //pointer to member
X x;
int v = f(&x, 5); //call X::foo() for x ...
8
votes
4answers
297 views
C++ equivalent of C#'s Func<T, TResult>
The following code computes the average of a particular property of T in the items collection:
public double Average<T>(IList<T> items, Func<T, double> selector)
{
double ...
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
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 ...
6
votes
2answers
105 views
How to execute unary function objects of different parameter type in sequence?
I'm designing a mechanism that will execute a set of unary function objects in sequence. These function objects are assigned during runtime, and the problem is: the parameter type of these function ...
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 ...
5
votes
2answers
684 views
Using STL algorithms with shared_ptr, function objects
I have a set of shared_ptr, and I'd like to use remove_copy_if with a custom function object for the predicate. I didn't know the "best" way to do it. Right now, I've got this working:
class ...
5
votes
4answers
340 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
6answers
733 views
When do you use function objects in C++?
I see function objects used often together with STL algorithms. Did function objects came about because of these algorithms? When do you use a function object in C++? What is its benefits?
5
votes
4answers
727 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 ...
3
votes
4answers
103 views
pointer to function object in C++
I wanted to pass a function object to a class, and the class will use the function object to do some job inside the class.
But the problem is that, I don't what the function object will be passed in. ...
3
votes
1answer
55 views
How to return a function type dependent on a template argument?
I would like to return a std::function whose type is dependent on the type of one template argument of my function template.
// Return a function object whose type is directly dependent on F
...
3
votes
4answers
143 views
templates and function objects - c++
i have a problem with this class.
the goal is to make the main function work properly. we were supposed to implement the "And" function object so that the code will work. i can't find what is the ...
2
votes
2answers
83 views
Binding the parameters before setting the function pointer?
I would like to try something out and unify some boilerplate code in one of our dynamic library API wrappers.
Essentially, I would like to do the following:
typedef bool (*MyFPtrT)(long id, ...
2
votes
3answers
129 views
returning a user defined function name when using a decorator with a callable object
Consider the following code fragment.
def print_timing(func):
import time
def wrapper(*args, **kwargs):
t1 = time.time()
res = func(*args, **kwargs)
t2 = time.time()
...
2
votes
4answers
305 views
Using std::tm as Key in std::map
I'd like to use std::tm () as the key for an std::map-container.
But when I try to compile it, I get a lot(10) of errors.
For example:
1.
error C2784: 'bool std::operator
<(const
...
2
votes
4answers
129 views
Help understanding the working of Function Objects?
I found this code on Wikipedia
class compare_class {
public:
bool operator()(int A, int B) const {
return A < B;
}
};
...
// Declaration of C++ sorting function.
template <class ...
2
votes
3answers
320 views
Access result type of a function template parameter in the template?
Given the following template:
template<class T>
class Container
{
private:
boost::function<T> f;
};
... and its instantiation, perhaps as follows:
Container<bool(int, int)> ...
2
votes
6answers
496 views
understanding Functors in STL
quoting from "The C++ Standard Library" by N M Jousttis, Section 5.9
#include < iostream>
#include < list>
#include < algorithm>
using namespace std;
//function object that adds ...
2
votes
6answers
622 views
function objects versus function pointers
I have two questions related to function objects and function pointers,
Question : 1
When I read the different uses sort algorithm of STL, I see that the third parameter can be a function ...
1
vote
2answers
90 views
overloading operator ()
I have this declaration
struct Z {
void operator ()( int a ) {
cout << "operator()() " << a << endl;
}
};
Z oz, *zp = &oz;
oz(1); //ok
(*zp)(2); //ok
zp(3); ...
1
vote
2answers
90 views
Bind function pointer to boost::function object
How can I initialize a boost::function object with a raw function pointer?
Metacode
extern "C"
{
class Library
{
...
};
Library* createLibrary();
}
...
void* ...
1
vote
2answers
176 views
Detecting function object (functor) and lambda traits
How can I detect the return type and parameter types of nullary and unary function pointers, std::function objects, and functors (including lambdas)?
Boost's function_traits and functional traits ...
1
vote
2answers
106 views
for_each weird behaviour
I don't use the STL much and I'm wanting to start learning it, so I made a really simple program using the STL's for_each function. Here is the entire program (minus header files):
class Object {
...
1
vote
2answers
413 views
parsing JSON - eval() or function object?
To parse JSON, I believe the best method is to use native JSON support in browsers.
I was looking for a good way to parse JSON in cases where native JSON support is not available.
When i looked at ...
1
vote
1answer
111 views
Assign a method operator() to an object
I'm having this problem in a real-world Project.
How to convert an "object" into a function in JavaScript?
I need at least as Steve said "to assign a method operator() to an object".
...
1
vote
3answers
465 views
How is factorial computed?
say there is a function to calculate factorial(n)
Does factorial(7) creates 7 function object for each of n from 1 to 7
and use those values when ever necessary (for factorial(8) as like ...
0
votes
2answers
63 views
javascript class inherit from Function class
I like that in javascript, I can create a function, and then add further methods and attributes to that function
myInstance = function() {return 5}
myInstance.attr = 10
I would like to create a ...
0
votes
0answers
101 views
actionscript3 random object movement and hittest
Someone please help me before my brain bursts.
I am creating a game where a zombie walks down a street, the zombie moving right, the scenery/street moving left. I also want brains to be on the ...
0
votes
2answers
70 views
Temporary function object in a for loop
Does the function object randomElementByWeight constructor get called for every iteration through the loop or can the compiler optimize this away somehow? I want to make sure the rand function is ...
0
votes
3answers
85 views
creating a function object from a string
Question: is there a way to make a function object in python using strings?
Info: I'm working on a project which i store data in a sqlite3 server backend. nothing to crazy about that. a DAL class ...
0
votes
5answers
129 views
How can I use std::generate/generate_n with a polymorphic function object?
I'm new to std::generate and have attempted to structure a program which uses it to initialize vectors. However it's behaving differently to my expectations.
I have an abstract base class:
template ...
0
votes
2answers
246 views
Declaring and defining a function object inside a class member function
I wonder if and how it is possible to define a function object inside a classes member function to use it directly with, for example, the std::transform function.
I know the example is a bit stupid, ...
-1
votes
5answers
133 views
for_each usage in C++
#include <list>
#include <algorithm>
class Abstract
{
//contains a pure virtual function
};
class Mock
{
public:
Mock();
~Mock()
{
std::for_each(m_abs_list.begin(), ...