library: libCore #include "TArrayI.h" |
TArrayI() | |
TArrayI(Int_t n) | |
TArrayI(const TArrayI& array) | |
TArrayI(Int_t n, const Int_t* array) | |
virtual | ~TArrayI() |
void | AddAt(Int_t i, Int_t idx) |
void | Adopt(Int_t n, Int_t* array) |
Int_t | At(Int_t i) const |
static TClass* | Class() |
void | Copy(TArrayI& array) const |
const Int_t* | GetArray() const |
Int_t* | GetArray() |
Int_t | TArray::GetSize() const |
Stat_t | GetSum() const |
virtual TClass* | IsA() const |
TArrayI& | operator=(const TArrayI& rhs) |
Int_t& | operator[](Int_t i) |
Int_t | operator[](Int_t i) const |
static TArray* | TArray::ReadArray(TBuffer& b, const TClass* clReq) |
void | Reset() |
void | Reset(Int_t val) |
virtual void | Set(Int_t n) |
void | Set(Int_t n, const Int_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 |
Int_t* | fArray | [fN] Array of fN 32 bit integers |
Int_t | TArray::fN | Number of array elements |
TArrayI Array of integers (32 bits per element).
Adopt array arr into TArrayI, i.e. don't copy arr but use it directly in TArrayI. User may not delete arr, TArrayI dtor will do it.
Set size of this array to n ints. 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 ints and set the contents. This function should not be called if the array was declared via Adopt.