The `ParamTable` class is a 2d table, whose rows are indexed by ``id``
and whose columns are properties; see the discussion of properties in the
Overview. A `ParamTable` is used by `TermTables` to hold the shared
parameters for its `Terms`.
|
|
__init__(self,
_ptr)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
|
|
|
|
|
|
|
|
addParam(self,
**kwds)
add and return a new Param(). |
|
|
|
|
addProp(self,
name,
type)
add a new property of the given type, which must be int, float, or
str. |
|
|
|
|
propType(self,
name)
type of the property with the given name |
|
|
|
|
delProp(self,
name)
removes the property with the given name. |
|
|
|
|
param(self,
id)
fetch the Param with the given id |
|
|
|
|
find(self,
name,
value)
return the Params with the given value for name |
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|