Example #1
0
 /**
  * Constructor.
  *
  * @param integer $m The number of buckets.
  */
 public function __construct($m)
 {
     parent::__construct();
     $this->m = $m;
     $this->count = new BasicArray($m);
 }
Example #2
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
 }
Example #3
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $self->count = new BasicArray(self::R);
 }