Tagged Questions

0
votes
4answers
77 views

C++ problem with std::pair and forward declarations

Hi! Unfortunately I still got a problem with my templated code from here: http://stackoverflow.com/questions/1911434/c-fancy-template-code-problem on line 49 in the file 'utility': error C2440: …
0
votes
2answers
133 views

Accessing a nested pair

To take apart a pair, the following can be done boost::bind(&std::pair::second, _1); // returns the value of a pair What about using combinations of different containers, how can a nested pair …
0
votes
2answers
75 views

jQuery Variables as Key in Key:Pair CSS attributes

Is it possible to take something like: $("div").css({ "top": var1, "height": var2, etc. }); And turn it into: var dir = "top"; var length = "height"; $("div").css({ dir: var1, …
0
votes
2answers
95 views

yet another STL tree question

Hello everyone, quite a funny question I have. I am working now on the HTML parser and I was using vector for all my input purposes which seemed quite fine and fast for creating tree. In another …
0
votes
3answers
196 views

How do I initialize a const std::pair ?

Let's say that I've got a : #include <utility> using namespace std; typedef pair<int, int> my_pair; how do I initialize a const my_pair ?
0
votes
6answers
555 views

Keeping a pair of primitives in a Java HashMap

I have a list of files. I would like to scan through and keep a count of the number of files with the same size. the issue is with filesize which is a long, as we know, hashmap will take in only an …
1
vote
4answers
291 views

Is it possible to use a custom class in place of std::pair in an STL map?

Is this possible? #include <map> class Example { private: std::map<std::string, std::string, less<std::string>, std::allocator< CustomPair<std::string, std::string> …
1
vote
1answer
157 views

How to create a “Pair” function to match against a string list?

I was doing an exercise on F# Wiki Book on List (scroll to the bottom) to create a Pair method. I was able to pair a integer list without problem but an F# exception was thrown for a string list. It …
1
vote
2answers
289 views

What are and how do I use OpenSSL BIO pairs?

What exactly is a BIO pair in OpenSSL, and how is it intended to be used? I've already checked the OpenSSL docs, but any details are few and far between. Thanks!
8
votes
4answers
582 views

Is there a standard C++ function object for taking apart a std::pair?

Does anyone know if there's a de-facto standard (i.e., TR1 or Boost) C++ function object for accessing the elements of a std::pair? Twice in the past 24 hours I've wished I had something like the …
11
votes
10answers
8k views

What is C# analog of C++ std::pair?

I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based. Thank you!
5
votes
10answers
3k views

What is std::pair?

What is std::pair for, why would I use it, and what benefits does boost::compressed_pair bring?