Returns all the the elements of a collection except the first preserving the keys
- coll
- Collection of values to be returned except the first one.
<?php
use function Lambdish\Phunctional\rest;
return rest([1, 2, 3, 4, 5]);
// => [1 => 2, 2 => 3, 3 => 4, 4 => 5]