Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Create an array containing a range of elements
<?php range(string|int|float $start, string|int|float $end, int|float $step = 1): array
<?php         $datasets = $this->datasets;



        if ($this->repetitions > 1) {

            $datasets = [range(1, $this->repetitions), ...$datasets];

        }



        DatasetsRepository::with($this->filename, $methodName, $datasets);
<?php                     [...$this->uses[$path][1], ...$groups],

                    array_map(

                        fn (int $index): array => [...$this->uses[$path][2][$index] ?? [], ...($hooks[$index] ?? [])],

                        range(0, 3),

                    ),

                ];

            } else {