0
votes
C++ API for returning sequences in a generic way
You can statically dispatch on the type of iterator using iterator_traits
Something like this :
template<T_insertIter> get_sequence(T_insertIter inserter)
{
return …
7
votes
What is std::pair?
You sometimes need to return 2 values from a function, and it's often overkill to go and create a class just for that.
std:pair comes in handy in those cases.
I think boost:compress …
0
votes
Switch vs if-else
Switchs can generally be compiled to jump tables which would be more performant than chained ifs.
…
2
votes
What’s the best hashing algorithm to use on a stl string when using hash_map?
Boost has an boost::hash library which can provides some basic hash functions for most common types.
…
2
votes
How to read file content into istringstream?
Maybe you should search into memory mapped files instead.
…
3
votes
Getting a boost::shared_ptr for this
boost has a solution for this use case, check enable_shared_from_this
…
1
vote
5
votes
value semantics and pointer semantics?
Java is using implicit pointer semantics for Object types and value semantics for primitives.
Value semantics means that you deal directly with values and that you pass copies around.
The p …
15
votes
Namespaces and Operator Overloading in C++
You should define them in the library namespace.
The compiler will find them anyway through argument dependant lookup.
No need to pollute the global namespace.
…
0
votes
c++ file io & splitting by separator
If you want to be able to scale to harder input formats, you should consider spirit, boost parser combinator library.
…
5
votes
When to build your own buffer system for I/O (C++)?
Maybe you should look into memory mapped files.
Check them in this library : Boost.Interprocess …
6
votes
Vector iterator not dereferencable
Simple :
find fails since your newly created Circle can't be found in the vector with comparing Shape *
a failed find returns the end iterator which is not deferencable as ca …
1
vote
Why does boost::variant not provide operator !=
Because it doesn't need to.
Boost has an operators library which defines operator!= in term …
1
vote
Data-structure that stores unique elements but answers queries for another ordering in C++
What you want can be achieved using the library Boost.Multi-index
Check in particula …
