LambdaExpression

/** * @brief A lambda expression. */ 

Inherit from Expression

Primary key: element_hash_id: int

schema LambdaExpression extends Expression { @primary element_hash_id: int, name: string, parent_hash_id: int, index_order: int, location_hash_id: int, printable_text: string } 

LambdaExpression::getParentHashId

/** * @brief gets the parent hash id of this element. * @return int */ 
pub fn getParentHashId(self: LambdaExpression) -> int; 

LambdaExpression::getEnclosingStatement

/** * @brief gets the statement which encloses the expression. * @return Statement */ 
pub fn getEnclosingStatement(self: LambdaExpression) -> Statement; 

LambdaExpression::getBody

/** * @brief gets the element representing lambda expression body, a code block or an expression. * @return ElementParent */ 
pub fn getBody(self: LambdaExpression) -> ElementParent; 

LambdaExpression::getType

/** * @brief gets the type of this element. * @return string */ 
pub fn getType(self: LambdaExpression) -> string; 

LambdaExpression::getAnAncestor

/** * @brief gets an ancestor of the element. * @return ElementParent */ 
pub fn getAnAncestor(self: LambdaExpression) -> *ElementParent; 

LambdaExpression::getIndex

/** * @brief gets the index order of this element. * @return int */ 
pub fn getIndex(self: LambdaExpression) -> int; 

LambdaExpression::getParameter

/** * @brief gets the parameter of the lambda expression. * @return Parameter */ 
pub fn getParameter(self: LambdaExpression) -> *Parameter; 

LambdaExpression::getParent

/** * @brief gets the parent of the expression. * @return ElementParent */ 
pub fn getParent(self: LambdaExpression) -> ElementParent; 

LambdaExpression::getLocationHashId

/** * @brief gets the location hash id of this element. * @return int */ 
pub fn getLocationHashId(self: LambdaExpression) -> int; 

LambdaExpression::getSize

/** * @brief gets the size information for the element. * @return NumberOfLines */ 
pub fn getSize(self: LambdaExpression) -> NumberOfLines; 

LambdaExpression::getPrintableText

/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */ 
pub fn getPrintableText(self: LambdaExpression) -> string; 

LambdaExpression::__all__

Data constraint method.

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

LambdaExpression::getLocation

/** * @brief gets the location for the element. * @return Location */ 
pub fn getLocation(self: LambdaExpression) -> Location; 

LambdaExpression::getEnclosingCallable

/** * @brief gets the callable in which this expression occurs. * @return Callable */ 
pub fn getEnclosingCallable(self: LambdaExpression) -> Callable;