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
        );
@@ 4752-4763 (lines=12) @@
4749
     * @psalm-return static<TKey,T>
4750
     * @psalm-mutation-free
4751
     */
4752
    public function reject(\Closure $closure): self
4753
    {
4754
        // init
4755
        $filtered = [];
4756
4757
        foreach ($this->getGenerator() as $key => $value) {
4758
            if (!$closure($value, $key)) {
4759
                $filtered[$key] = $value;
4760
            }
4761
        }
4762
4763
        return static::create(
4764
            $filtered,
4765
            $this->iteratorClass,
4766
            false