Tagged Questions

9
votes
3answers
201 views

Support for const_string in std::ostream operator <<

I'm currently using the very clever package boost::const_string from http://conststring.sourceforge.net/ until http://libcxx.llvm.org/ is available pre-packaged on Ubuntu. libcxx's std::string also ...
3
votes
3answers
953 views

Compiler not creating templated ostream << operator

I have a class, defined in a head as: template <typename T> class MyClass { template <typename U> friend std::ostream& operator<<(std::ostream& output, const ...
1
vote
1answer
293 views

C++ toString member-function and ostream operator << integration via templates

I'm a beginner C++ developer and I have a question about toString and ostream operator integration via templates. I have such code: struct MethodCheckerTypes{ typedef unsigned char ...
1
vote
2answers
706 views

Typedef and ostream operator for a std::vector

I created a class Chromosome that ended up simply being a wrapper for vector with an ostream operator, so I've decided to typedef vector instead. However, I'm having trouble with the templated ostream ...