Skip to content

Released: ArrayLookup 1.6.0

Latest
Compare
Choose a tag to compare
@samsonasik samsonasik released this 30 Mar 16:32
· 7 commits to main since this release
1.6.0
be860ef

1.6.0

ci build Code Coverage PHPStan

This bring new ability to gather only limited found data on Finder::rows():

$data = [1, 2];
$filter = static fn($datum): bool => $datum >= 0;
$limit = 1;

var_dump(
    Finder::rows($data, $filter, limit: $limit)
); // [1]