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
*/
- Parameter
self
:PolyadicExpressionDO
- Return
string
pub fn getOpcode(self: PolyadicExpressionDO) -> string;
PolyadicExpressionDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*PolyadicExpressionDO
pub fn __all__(db: JavaDB) -> *PolyadicExpressionDO;
PolyadicExpressionDO::getSize
/**
* @brief gets the size of this element.
* @return int
*/
- Parameter
self
:PolyadicExpressionDO
- Return
int
pub fn getSize(self: PolyadicExpressionDO) -> int;