TArrayC Array of chars or bytes (8 bits per element).
Default TArrayC ctor.
Create TArrayC object and set array size to n chars.
Create TArrayC object and initialize it with values of array.
Copy constructor.
TArrayC assignment operator.
Delete TArrayC object.
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.
Add char c at position i. Check for out of bounds.
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.
Stream a TArrayC object.
{array.Set(fN,fArray);}
{ return fArray; }
{ return At(i); }
{Stat_t sum=0; for (Int_t i=0;i<fN;i++) sum+=fArray[i]; return sum;}
{memset(fArray,val,fN*sizeof(Char_t));}
{ AddAt((Char_t)v, i); }