Eris\Sample::repeat PHP Method

repeat() public method

public repeat ( $times )
    public function repeat($times)
    {
        for ($i = 0; $i < $times; $i++) {
            $this->collected[] = $this->generator->__invoke(self::DEFAULT_SIZE, $this->rand)->unbox();
        }
        return $this;
    }