Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
2k views

How can I negate a functor in C++ (STL)?

I have some function to find a value: struct FindPredicate { FindPredicate(const SomeType& t) : _t(t) { } bool operator()(SomeType& t) { return t == _t; } private: ...
8
votes
4answers
530 views

Standard predicates for STL count_if

I'm using the STL function count_if to count all the positive values in a vector of doubles. For example my code is something like: vector<double> Array(1,1.0) Array.push_back(-1.0); ...
3
votes
5answers
394 views

How To Optimize This find_if Code?

I have function to check if a string contains only alphanumeric and underscore character... inline bool IsValidChar(char x) { return (isalnum(x) || (x == '_')); } My find_if code is: ...
2
votes
6answers
241 views

How to use std::find/std::find_if with a vector of custom class objects?

I have a class representing a user called Nick and I want to use std::find_if on it, where I want to find if the userlist vector has an object included with the same username I pass in. I did a few ...
2
votes
2answers
153 views

Substituting `find_if` function

I wrote a class method using STL find_if. The code is the following: void Simulator::CommunicateEvent (pEvent e) { pwEvent we (e); std::list<pEvent> l; for (uint32_t i = 0; i < ...
2
votes
3answers
453 views

C++ STD::find_if using structure predicate

key_struct kStruct; kStruct.x = 2; std::find_if(m_cueCommands.begin(), m_cueCommands.end(), find_MyInt(kStruct)); struct key_struct { int x; string y; string z; } struct find_myInt : ...
2
votes
2answers
277 views

Checking whether every list in a list is null in Common Lisp

I know that I can check whether a list of lists only contains null lists like this CL-USER> (null (find-if (lambda (item) (not (null item))) my-list)) where my-list is a list of lists. For ...
1
vote
7answers
137 views

C++ How to make find_if not only return the first object for which applying pred to it is true

This is meant to allow user to input name, contact and address he/she wishes to search for. What I wanted to do is to display all objects that applying pred to it is true but I can't seems to get it ...
1
vote
1answer
52 views

find_if in MFC container with iterator derived from std::iterator

I have a working iterator for MFC CObList - BaseMFCIter. It works for iterating in loop but i still didn't managed to make ListIter to work properly with STL algorithm find_if. Code #include < ...
1
vote
3answers
145 views

find_if on a string array

I am finding all strings from an array depending on the first letter: #include<iostream> #include<algorithm> #include<string> int main(){ const std::string strArray[] = ...
1
vote
2answers
148 views

Problem with leading zero's in a vector array of doubles

I'm tring to calculate the standard deviation of a vector of doubles (called A). Now I have a function called StDev that will do this. However, the first few elements of vector A are zero and I need ...
1
vote
2answers
396 views

Composite pattern in C++ problem

I have to work with an application in C++ similar to a phone book: the class Agenda with an STL list of Contacts.Regarding the contacts hierarchy,there is a base-class named Contact(an abstract ...
1
vote
2answers
123 views

Alternative version of find_if which finds all, not just the first?

Is there an alternative version of std::find_if that returns an iterator over all found elements, instead of just the first one? Example: bool IsOdd (int i) { return ((i % 2) == 1); } ...
0
votes
2answers
88 views

not1 was not declared in this scope

I was following some information from this: How to find the first character in a C++ string When I tried to implement it into my code, I got the error not1 was not declared in this scope. void ...
0
votes
4answers
78 views

In C++, how to use find_if on a map with a functor when keys are struct with strings?

I have a stl::map which key type is a custom struct. I want to know if this map already has a key with a specific string as component (noted as "id" below), whatever the value of its other components. ...
0
votes
3answers
175 views

Using find_if on a vector of object

I have a vector of that looks like the following: class Foo { //whatever } class MyClass { int myInt; vector<Foo> foo_v; } And let's say, in the main: int main (void) { ...
0
votes
3answers
237 views

what is wrong with this std::find_if

I get the following error when compiling the std::find_if function: error C2451: conditional expression of type 'overloaded-function' is illegal The code looks like this: typedef ...
0
votes
2answers
248 views

using the find_if() function in c++

I get errors where i use the find_if function. It says no matching function. I did find that others have come through this error, but i couldn't quite understand the replies. Please can some one ...
0
votes
1answer
96 views

different results in visual studio and linux(eclipse)

my code works perfectly in visual studio yet i encounter a problem running it in eclipse. in the function: City* Gps::FindCity(const char* city) { if(city != NULL) { City *tmp = NULL; ...
0
votes
1answer
270 views

Boost Phoenix: Binding to reference members of structures?

I would like to use Boost Phoenix to generate a lambda function for use in a std::find_if operation on a structure that contains reference-type members. A contrived example is as follows: struct ...
0
votes
4answers
735 views

split a string using find_if

I found the following code in the book "Accelerated C++" (Chapter 6.1.1), but I can't compile it. The problem is with the find_if lines. I have the necessary includes (vector, string, algorithm, ...