Go to the source code of this file.
◆ IMPLEMENT_CLASSINFO()
Definition at line 42 of file __LIST.cpp.
45{
46 StringBuilder
r =
__T(
"{");
47 for (ConstIterator it = begin(); it != end(); it++)
48 {
49 if (it != begin())
51#ifdef __COMPILE_StringList__
53 r += String::escape((*it), (*it).length());
55#elif defined(__COMPILE_ByteStringList__)
57 r += String::tryString((*it), 8);
59#elif defined(__COMPILE_PointerList__)
60 r.format(
__T(
"%p"), (*it));
61#else
62 r += (*it).toString();
63#endif
64 }
67}
68
70{
74}