Pinq\Expressions\ArgumentExpression::isUnpacked PHP Method

isUnpacked() public method

public isUnpacked ( ) : boolean
return boolean
    public function isUnpacked()
    {
        return $this->isUnpacked;
    }

Usage Example

 protected function visitArgument(ArgumentExpression $expression)
 {
     if ($expression->isUnpacked()) {
         throw new PinqDemoSqlException('Does not support argument unpacking');
     }
     $this->walk($expression->getValue());
 }