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
        );
@@ 4766-4777 (lines=12) @@
4763
     * @psalm-return static<TKey,T>
4764
     * @psalm-mutation-free
4765
     */
4766
    public function reject(\Closure $closure): self
4767
    {
4768
        // init
4769
        $filtered = [];
4770
4771
        foreach ($this->getGenerator() as $key => $value) {
4772
            if (!$closure($value, $key)) {
4773
                $filtered[$key] = $value;
4774
            }
4775
        }
4776
4777
        return static::create(
4778
            $filtered,
4779
            $this->iteratorClass,
4780
            false