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