Pinq\Expressions\UnaryOperationExpression::getOperand PHP Méthode

getOperand() public méthode

public getOperand ( ) : Expression
Résultat Expression
    public function getOperand()
    {
        return $this->operand;
    }

Usage Example

 public function visitUnaryOperation(O\UnaryOperationExpression $expression)
 {
     $this->walk($expression->getOperand());
     $this->addTypeOperation($expression, $this->analysis[$expression->getOperand()]->getUnaryOperation($expression));
 }
All Usage Examples Of Pinq\Expressions\UnaryOperationExpression::getOperand