0
votes
2answers
42 views
Checking for list membership using the STL and a unary function adapted functor
I've attempted to write a brief utility functor that takes two std::pair items and tests for their equality, but disregarding the ordering of the elements. Additionally (and this i …
1
vote
6answers
79 views
Declaring functors for comparison ??
Hello, I have seen other people questions but found none that applied to what I'm trying to achieve here.
I'm trying to sort Entities via my EntityManager class using std::sort an …
0
votes
3answers
103 views
Using a non-static class member inside a comparison function
Hello everyone,
I'm currently developing a syntaxic analyser class that needs, at a point of the code, to sort structs holding info about operators. Each operator has a priority, …
1
vote
2answers
80 views
Speed difference: separate functor VS operator() inside a big class with *this
I'm using the c++ STL heap algorithms, and I wrote a wrapper class around it so I could do some other stuff. When I tried to use the code below, for example:
//! Min-heap wrapper …
1
vote
4answers
96 views
Iterate over functions
Is something like this possible to do in Java?
for (Object o : objects) {
for (Function f : functions) {
f(o);
}
}
I'm only calling a handful of functions, but I need to …
2
votes
3answers
123 views
how to implement common functor for several classes in c++
Hi,
suppose you have two (or more) classes with private member vectors:
class A {
private:
std::vector<X> priv_vec;
public:
//more stuff
}
class B {
priv …
3
votes
5answers
185 views
Passing around a nested functor (C++)
Is there a way to pass foo_ around outside of main? I saw something about Boost in another question regarding functors. That looks like it may work. Here's the answer mentioning Bo …
5
votes
2answers
198 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: …
3
votes
1answer
147 views
functor generation from member function pointer type
I am trying to simplify (via make_fn()) the generation of functors that preprocess parameters (via wrap()) for member functions of arity n.
Generating the functors is basically wor …
1
vote
2answers
188 views
C++ templated functors
Hi, I was wondering if anyone can help me with functors. I dont really understand what functors are and how they work I have tried googling it but i still dont get it. how do funct …
4
votes
2answers
172 views
Is it possible to make a functor in JavaScript?
I'm trying to make a function that holds state but is called with foo().
Is it possible?
1
vote
4answers
464 views
What is a good data structure to represent an undirected graph?
I need to construct an undirected graph. I don't need it to do anything too fancy, but ideally it would work like this:
structure UDG = UndirectedGraph
val g = UDG.empty
val g = …
1
vote
2answers
117 views
c++ operator overload and usage
bool operator()(Iterator it1, Iterator it2) const
{
return (*it1 < *it2);
}
Can someone explain this function for me, thanks!
is this means overload the operator ()? after ov …
2
votes
7answers
321 views
Simplifying FOR loops
I have a function that essentially reads values in from a vector of doubles, appends these to a string (while ensuring a space between each and setting their precisions) and return …
1
vote
4answers
143 views
Subclassing a window with a functor (Win32)
Quick sanity check: Is it possible to subclass a window using a functor? I'm running into a situation where I want to have some data available in the win proc, but GWLP_USERDATA is …
