library: libCore #include "TArrayC.h" |
TArrayC() | |
TArrayC(Int_t n) | |
TArrayC(const TArrayC& array) | |
TArrayC(Int_t n, const Char_t* array) | |
virtual | ~TArrayC() |
void | AddAt(Char_t c, Int_t i) |
void | Adopt(Int_t n, Char_t* array) |
Char_t | At(Int_t i) const |
static TClass* | Class() |
void | Copy(TArrayC& array) const |
const Char_t* | GetArray() const |
Char_t* | GetArray() |
Int_t | TArray::GetSize() const |
Stat_t | GetSum() const |
virtual TClass* | IsA() const |
TArrayC& | operator=(const TArrayC& rhs) |
Char_t& | operator[](Int_t i) |
Char_t | operator[](Int_t i) const |
static TArray* | TArray::ReadArray(TBuffer& b, const TClass* clReq) |
void | Reset(Char_t val = 0) |
virtual void | Set(Int_t n) |
void | Set(Int_t n, const Char_t* array) |
virtual void | ShowMembers(TMemberInspector& insp, char* parent) |
virtual void | Streamer(TBuffer& b) |
void | StreamerNVirtual(TBuffer& b) |
static void | TArray::WriteArray(TBuffer& b, const TArray* a) |
Bool_t | TArray::BoundsOk(const char* where, Int_t at) const |
Bool_t | TArray::OutOfBoundsError(const char* where, Int_t i) const |
Char_t* | fArray | [fN] Array of fN chars |
Int_t | TArray::fN | Number of array elements |
TArrayC Array of chars or bytes (8 bits per element).
Adopt array arr into TArrayC, i.e. don't copy arr but use it directly in TArrayC. User may not delete arr, TArrayC dtor will do it.
Set size of this array to n chars. A new array is created, the old contents copied to the new array, then the old array is deleted. This function should not be called if the array was declared via Adopt.
Set size of this array to n chars and set the contents. This function should not be called if the array was declared via Adopt.