#include "Rtypes.h"
#include "TMathBase.h"
#include <string_view>
#include "ROOT/TypeTraits.hxx"
#include "snprintf.h"
#include <iosfwd>
#include <cstdarg>
#include <cstdio>
#include <cstring>
#include <string>
Classes | |
struct | TString::LongStr_t |
struct | TString::RawStr_t |
struct | TString::Rep_t |
struct | TString::ShortStr_t |
class | TString |
Basic string class. More... | |
class | TSubString |
A zero length substring is legal. More... | |
union | TString::UStr_t |
Namespaces | |
namespace | llvm |
|
extern |
Remove all blanks from the string str.
The returned string has to be deleted by the user.
Definition at line 2572 of file TString.cxx.
Escape specchars in src with escchar and copy to dst.
Definition at line 2593 of file TString.cxx.
|
extern |
Formats a string in a circular formatting buffer.
Removes the need to create and delete short lived strings. Don't pass Form() pointers from user code down to ROOT functions as the circular buffer may be overwritten downstream. Use Form() results immediately or use TString::Format() instead.
Definition at line 2489 of file TString.cxx.
Return a case-sensitive hash value (endian independent).
Definition at line 576 of file TString.cxx.
|
inline |
|
inline |
|
inline |
Add string to char.
Definition at line 1557 of file TString.cxx.
Use the special concatenation constructor.
Definition at line 1533 of file TString.cxx.
Add char to string.
Definition at line 1549 of file TString.cxx.
Use the special concatenation constructor.
Definition at line 1525 of file TString.cxx.
Use the special concatenation constructor.
Definition at line 1541 of file TString.cxx.
|
inline |
|
inline |
|
inline |
|
inline |
Write string to stream.
Definition at line 177 of file Stringio.cxx.
Write TString or derived to TBuffer.
Definition at line 1470 of file TString.cxx.
|
inline |
Compare TString with a char *.
Definition at line 1482 of file TString.cxx.
Bool_t operator== | ( | const TSubString & | s1, |
const char * | s2 ) |
Compare sub-string to char *.
Definition at line 1707 of file TString.cxx.
Compare sub-string to string.
Definition at line 1721 of file TString.cxx.
Bool_t operator== | ( | const TSubString & | s1, |
const TSubString & | s2 ) |
Compare two sub-strings.
Definition at line 1731 of file TString.cxx.
Read string from stream.
Definition at line 169 of file Stringio.cxx.
Read string from TBuffer. Function declared in ClassDef.
Definition at line 1461 of file TString.cxx.
|
extern |
Formats a string in a circular formatting buffer and prints the string.
Appends a newline. If gPrintViaErrorHandler is true it will print via the currently active ROOT error handler.
Definition at line 2503 of file TString.cxx.
|
extern |
Duplicate the string str.
The returned string has to be deleted by the user.
Definition at line 2557 of file TString.cxx.
|
extern |
Strip leading and trailing c (blanks by default) from a string.
The returned string has to be deleted by the user.
Definition at line 2521 of file TString.cxx.
Return a lower-case version of str.
Definition at line 1497 of file TString.cxx.
Return an upper-case version of str.
Definition at line 1511 of file TString.cxx.
Un-escape specchars in src from escchar and copy to dst.
Definition at line 2617 of file TString.cxx.