예제 #1
0
파일: Sequence.php 프로젝트: pbu88/sequence
 /**
  * @param callable $fnMap($value, $key) -- function that returns the new key
  * @return static
  */
 public function keyBy($fnMap)
 {
     return static::make(IterationTraits::mapKeys($this, FnGen::fnSwapParamsPassThrough($fnMap)));
 }