This library adds features that doesn't exist in PHP, or exist but they're not "good" using
There is some examples:
<?php
$array = [1, 2, 3, 4, 5];
$filtered = array_filter($array, function ($item) {
return $item < 3;
});
var_dump($filtered); // [1, 2]
<?php
use devutils\Stream;
use devutils\Filter;
use devutils\Collectors;
$array = [1, 2, 3, 4, 5];
$filtered = Stream::of($array)
->filter(Filter::lessThan(3))
->collect(Collectors::toArray());
var_dump($filtered); // [1, 2]
<?php
use devutils\Stream;
use devutils\Filter;
$array = [1, 2, 3, 4, 5];
Stream::ofRef($array)
->filter(Filter::lessThan(3));
// Because it's using the reference for the array, not the array itself, it will modify
// directly in the input
var_dump($array); // [1, 2]
<?php
$games = [
["id" => mt_rand(), "players" => ["foo", "bar", "baz"]],
["id" => mt_rand(), "players" => ["buzz", "qux", "fu"]]
];
$gameOfBar = array_map(function ($item) {
return $item["id"];
}, array_filter($games, function ($item) {
return in_array("bar", $item["players"]);
})[0] ?? null;
<?php
use devutils\Stream;
use devutils\Filter;
$games = [
["id" => mt_rand(), "players" => ["foo", "bar", "baz"]],
["id" => mt_rand(), "players" => ["buzz", "qux", "fu"]]
];
$gameOfBar = Stream::of($games)
->filter(function ($i) { return in_array("bar", $i["players"]); })
->map(Mapper::itemKey("id"))
->first()
->orElse(null);