Code Duplication    Length = 11-12 lines in 2 locations

src/Arrayy.php 2 locations

@@ 2096-2106 (lines=11) @@
2093
     * @psalm-return static<TKey,T>
2094
     * @psalm-mutation-free
2095
     */
2096
    public function each(\Closure $closure): self
2097
    {
2098
        // init
2099
        $array = [];
2100
2101
        foreach ($this->getGenerator() as $key => $value) {
2102
            $array[$key] = $closure($value, $key);
2103
        }
2104
2105
        return static::create(
2106
            $array,
2107
            $this->iteratorClass,
2108
            false
2109
        );
@@ 4767-4778 (lines=12) @@
4764
     * @psalm-return static<TKey,T>
4765
     * @psalm-mutation-free
4766
     */
4767
    public function reject(\Closure $closure): self
4768
    {
4769
        // init
4770
        $filtered = [];
4771
4772
        foreach ($this->getGenerator() as $key => $value) {
4773
            if (!$closure($value, $key)) {
4774
                $filtered[$key] = $value;
4775
            }
4776
        }
4777
4778
        return static::create(
4779
            $filtered,
4780
            $this->iteratorClass,
4781
            false