FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
C++
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
June 01, 2004

Fast, Nonintrusive String Concatenation

(Page 6 of 9)
June, 2004: Fast, Nonintrusive String Concatenation

Listing 5

template< . . . >
class fast_string_concatenator
{
public:
  . . .
  fast_string_concatenator(class_type const &lhs, class_type const &rhs);
  fast_string_concatenator(string_type const &lhs, class_type const &rhs);
  fast_string_concatenator(char_type const *lhs, class_type const &rhs);
  fast_string_concatenator(char_type const lhs, class_type const &rhs);
  . . .
};
template < . . . >
fast_string_concatenator<S, C, T>
  operator +( fsc_seed const &lhs, fast_string_concatenator< > const &rhs);
template < . . . >
fast_string_concatenator<S, C, T>
  operator +( fast_string_concatenator< > const & lhs
            , fast_string_concatenator< > const &rhs);
template < . . . >
fast_string_concatenator<S, C, T>
  operator +( S const & lhs, fast_string_concatenator< > const &rhs);
template < . . . >
fast_string_concatenator<S, C, T>
  operator +( C const *, fast_string_concatenator< > const &rhs);
template < . . . >
fast_string_concatenator<S, C, T>
  operator +( C const & lhs, fast_string_concatenator< > const &rhs);

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK