Standard C++ Library Reference ISO/IEC (VERSION3)
string
typedef basic_string<char> string;
The type describes a specialization of template class basic_string specialized for elements of
type char.
swap
template<class Tr, class Alloc>
void swap(
basic_string<Elem, Tr, Alloc>& left,
basic_string<Elem, Tr, Alloc>& right);
The template function executes left.swap(right).
wstring
typedef basic_string<wchar_t> wstring;
The type describes a specialization of template class basic_string for elements of type
wchar_t.
See also the Table of Contents and the Index.
Copyright © 1992-2001 by P.J. Plauger. All rights reserved.