Pinq\Expressions\UnaryOperationExpression::getOperand PHP 메소드

getOperand() 공개 메소드

public getOperand ( ) : Expression
리턴 Expression
    public function getOperand()
    {
        return $this->operand;
    }

Usage Example

예제 #1
0
 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