Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 285 Bytes

last.md

File metadata and controls

23 lines (15 loc) · 285 Bytes

last

Description

Returns the last element of a collection

Parameters

coll
Collection of values to be returned only the last one.

Examples

<?php

use function Lambdish\Phunctional\last;

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

// => 5