PolyadicExpressionDO

/**
* @brief DO class: A polyadic expression.
*/

Primary key: element_hash_id: int

schema PolyadicExpressionDO {
  @primary element_hash_id: int,
  size: int,
  opcode: string
}

PolyadicExpressionDO::getOpcode

/**
* @brief gets the opcode of this element.
* @return string
*/
pub fn getOpcode(self: PolyadicExpressionDO) -> string;

PolyadicExpressionDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *PolyadicExpressionDO;

PolyadicExpressionDO::getSize

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