Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 290 Bytes

File metadata and controls

23 lines (15 loc) · 290 Bytes

first

Description

Returns the first element of a collection

Parameters

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

Examples

<?php

use function Lambdish\Phunctional\first;

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

// => 1