コード例 #1
0
ファイル: SetTest.php プロジェクト: dazarobbo/cola
 public function testMap()
 {
     $set = new Set();
     $set->add(1, 2, 3);
     $set2 = $set->map(function ($item) {
         return $item * 10;
     });
     $this->assertEquals('10 20 30', $set2->join(' '));
 }