Package qubx :: Module tree_native :: Class Data
[hide private]
[frames] | no frames]

Class Data

source code

object --+
         |
        Data

Instance Methods [hide private]
 
__init__(self, impl)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__del__(self) source code
 
__cmp__(self, other) source code
 
__nonzero__(self) source code
 
__repr__(self)
repr(x)
source code
 
__str__(self)
str(x)
source code
 
__getattr__(self, key) source code
 
__setattr__(self, key, val)
x.__setattr__('name', value) <==> x.name = value
source code
 
__len__(self) source code
 
__getitem__(self, key) source code
 
__setitem__(self, key, val) source code
 
resize(self, nrow, type_if_none=13) source code
 
clear(self) source code
 
setup(self, dtype, nr=1, nc=1) source code
 
loadRows(self, first, last, doRead=True) source code
 
unloadRows(self, doWrite=True) source code
 
read_rows(self, first, last) source code
 
write_rows(self, first, last, data) source code
 
get_rows(self, first, last) source code
 
row(self, i) source code
 
col(self, j) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, impl)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__setattr__(self, key, val)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)