Aerospike\LDT\LList::removeMany PHP Method

removeMany() public method

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