Pinq\Expressions\UnaryOperationExpression::__construct PHP Method

__construct() public method

public __construct ( $operator, Expression $operand )
$operand Expression
    public function __construct($operator, Expression $operand)
    {
        $this->operator = $operator;
        $this->operand = $operand;
    }