The function-object tag has no wiki summary.
2
votes
1answer
62 views
How to accumulate results from a member function of a Element in a Container using only Element member functions and STL?
I have a Container of Elements, and each Element has its size() member function. I have managed to accumulate the total Container Elements size by writing a binary operation add_size:
#include ...
2
votes
1answer
95 views
C++ function objects cannot create sum using std::for_each (VS2012)
I am having trouble using function-objects in Visual Studio 2012.
I created a simple std::vector, added the ints 0-9 and wanted to create the sum of it using a function object. My class definition ...
5
votes
3answers
229 views
Is there an idiomatic way to create a collection of delegates in C++?
I want to store functions with similar signature in a collection to do something like this:
f(vector<Order>& orders, vector<Function>& functions) {
foreach(process_orders in ...
4
votes
1answer
101 views
Why do C++ function objects need reference type member variables?
This is a newbie C++ question. I was reading the "Function object" article in Wikipedia. The article has an example in C++ similar to the following:
struct printClass {
int &count;
...
1
vote
1answer
49 views
function object with stdout in C++
#include<algorithm>
#include<iostream>
#include<vector>
using namespace std;
class fn
{
public:
int i;
bool operator()(int,int)
{
++i;
...
1
vote
4answers
71 views
Where do I define Predicates and Function Objects?
My question is of a purely organisational nature and hence I realize potential answers may be subjective in nature. After years of working with C#, I've finally returned to C++ and am struggling with ...
1
vote
2answers
106 views
How I can pass callable object to function as parameter
In c++ standard library almost all algo function takes a callable object as a argument. Now I want to try this thing with my program. I opened the the headers for function like find_if or search_n() ...
1
vote
2answers
74 views
Function objects in Haskell compile error
I'm trying to create a class Func which represents a function, and then a data type Dot which composes functions. Below is my attempt, but I'm getting compile errors:
{-# LANGUAGE ...
0
votes
1answer
56 views
javascript augmented prototype and chain
I don't understand why if I add a property or function to a prototype of an existing function object that property or function is not recognized as belonging to the object.
Example:
var a = ...
0
votes
1answer
82 views
Using a function object when the API asks for a function pointer
I want to call a C API from C++. The API expects a function pointer, though for me the functionality is implemented in a C++ function object because it has state.
In fact the desired functionaliity ...
5
votes
0answers
119 views
Function Objects security risks [closed]
I was reading an article on C++11 and the author mentioned that one of the advantages of using lambdas is to avoid the tedium and security risks of function objects.
What are some security risks of ...
2
votes
2answers
65 views
Passing inner function of a struct (or class) as a functor
How should I pass a function inside an struct as a functor? I assumed this should work fine, but it didn't:
#include <algorithm>
using namespace std;
struct s {
int a[10];
bool ...
0
votes
2answers
110 views
C++ std:sort() using different criteria
I searched a lot and I am not sure if this is query is repeated but I used this as an reference to create a sort for my std::vector which takes data of following type.
typedef struct {
int size;
...
0
votes
2answers
664 views
build a function object with properties in typescript
I want to create a function object, which also has some properties held on it. For example in JavaScript I would do:
var f = function() { }
f.someValue = 3;
Now in TypeScript I can describe the ...
1
vote
2answers
83 views
Parsing ambiguity in a call to a temporary function object
I suspect that in the code below, a call to a temporary function object with both a constructor argument and a function call operator argument is somehow ambiguous due to a most-vexing-parse issue.
...
1
vote
1answer
237 views
Serializing function objects
Is it possible to serialize and deserialize a std::function, a function object, or a closure in general in C++? How? Does C++11 facilitate this? Is there any library support available for such a task ...
9
votes
2answers
116 views
How do function objects affect overload resolution?
Are function objects treated differently from regular functions during overload resolution? If so, how?
I have run into the following case where replacing a function with an equivalently-callable ...
1
vote
2answers
58 views
Is the classname() equivalent to a class object?
I know this might be a stupid question but I am not sure how to describe it properly.
When I try to call std::transform function for example,
template < class InputIterator, class ...
2
votes
2answers
126 views
get state in a function object casted to a std::function
I want to retrieve state from a function object. But the function object has been casted to a function<> template. How can I do it?
I mean:
function object:
class Counter {
private:
int ...
0
votes
1answer
70 views
Dropdown box representing a method call on a string
I have a dropdown box where the user can select a method to check whether a certain string either equals or endswith another string.
I would think to use function pointers/objects as the dropdown box ...
7
votes
4answers
584 views
STL Functional — Why?
In C++ Standard Template Library, there's a 'functional' part, in which many classes have overloaded their () operator.
Does it bring any convenience to use functions as objects in C++?
Why can't ...
2
votes
2answers
164 views
Can I use a function object without instantiation?
Having the following code:
template<typename T, typename OutStream = std::ostream> struct print {
OutStream &operator()(T const &toPrint, OutStream &outStream = std::cout) const {
...
3
votes
4answers
557 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. ...
1
vote
2answers
134 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
316 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* ...
0
votes
2answers
821 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 ...
-1
votes
5answers
326 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(), ...
3
votes
1answer
132 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
...
2
votes
2answers
219 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, ...
0
votes
2answers
165 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 ...
6
votes
2answers
246 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 ...
8
votes
4answers
492 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 ...
4
votes
2answers
956 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 ...
2
votes
3answers
243 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()
...
0
votes
3answers
343 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 ...
2
votes
4answers
1k 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
...
1
vote
2answers
128 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 {
...
7
votes
3answers
484 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 ...
6
votes
2answers
1k 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 ...
6
votes
3answers
539 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 ...
0
votes
5answers
357 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 ...
2
votes
4answers
163 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 ...
6
votes
4answers
853 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 ...
1
vote
2answers
882 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 ...
29
votes
4answers
11k views
How does the 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 ...
2
votes
3answers
653 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)> ...
0
votes
2answers
602 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, ...
3
votes
4answers
191 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
7answers
1k 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 ...
3
votes
6answers
2k 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 ...



