Example #1
0
 public function testRepeat()
 {
     $this->eq(s::repeat('x', 5), 'xxxxx');
     $this->eq(s::repeat('x', 0), '');
     $this->eq(s::repeat('abc', 2), 'abcabc');
 }
Example #2
0
 public function repeat($n)
 {
     return new self(s::repeat($this->value, $n));
 }