Data structure for HyperLogLog CRDT
Author: Luke Bakken (lbakken@basho.com)
Inheritance: extends Basho\Riak\DataType
Example #1
0
 public function testType()
 {
     $this->assertEquals('hll', Hll::TYPE);
     $crdt = new Hll([], '');
     $this->assertEquals('hll', $crdt->getType());
 }