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