ListCompExpressionDO

/**
* @brief DO class: A list comp expression.
*/

Primary key: element_oid: int

schema ListCompExpressionDO {
  @primary element_oid: int,
  elt_oid: int,
  generator_size: int
}

ListCompExpressionDO::getGeneratorSize

/**
* @brief gets the generator size of this element.
* @return int
*/
pub fn getGeneratorSize(self: ListCompExpressionDO) -> int;

ListCompExpressionDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *ListCompExpressionDO;

ListCompExpressionDO::getEltOid

/**
* @brief gets the elt oid of this element.
* @return int
*/
pub fn getEltOid(self: ListCompExpressionDO) -> int;