Пример #1
0
 /**
  * Reassembles a traversed sequence into its original shape
  *
  * Note that this only has an effect if the Sequenced data has the path-keyed
  *      structure that results from a call to Sequence::traverse()
  *
  * @param string $pathSeparator The character used to parse the key path
  * @return static
  */
 public function reassemble($pathSeparator = '.')
 {
     return static::make(IterationTraits::reassemble($this, $pathSeparator));
 }