Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 360 Bytes

rest.md

File metadata and controls

23 lines (15 loc) · 360 Bytes

rest

Description

Returns all the the elements of a collection except the first preserving the keys

Parameters

coll
Collection of values to be returned except the first one.

Examples

<?php

use function Lambdish\Phunctional\rest;

return rest([1, 2, 3, 4, 5]);

// => [1 => 2, 2 => 3, 3 => 4, 4 => 5]