Aerospike\LDT\LList::existsMany PHP Method

existsMany() public method

The elements checked must be consistently the same type (string, integer, array).
public existsMany ( array $values ) : integer
$values array
return integer status code of the operation
    public function existsMany(array $values)
    {
        $status = $this->client->apply($this->key, 'llist', 'exists', array($this->bin, $values), $res);
        $this->processStatusCode($status);
        return $this->errorno;
    }