chararray.count(sub, start=0, end=None)
chararray.flatten(order='C') Return a copy of the array collapsed into one dimension.
chararray.data Python buffer object pointing to the start of the array?s data.
chararray.sort(axis=-1, kind='quicksort', order=None) Sort an array, in-place.
chararray.T Same as self.transpose(), except that self is returned if self.ndim < 2.
chararray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array.
chararray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n
chararray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2
chararray.rjust(width, fillchar=' ')
chararray.fill(value) Fill the array with a scalar value.
Page 2 of 8