Stars: 166
Forks: 11
Pull Requests: 62
Issues: 15
Watchers: 13
Last Updated: 2023-02-27 23:05:25
Power of object-oriented programming with the elegance of functional programming in PHP.
License: MIT License
Languages: PHP
Power of object-oriented programming with the elegance of functional programming. Increase the robustness with reduced amount of code.
At the moment, in the experimental phase.
Due to the lack of generic types, Munus achieves genericity with the help of PHPStan template
annotation.
Stream example: find the sum of the first ten squares of even numbers
Stream::from(1)
->filter(fn($n) => $n%2===0)
->map(fn($n) => $n**2)
->take(10)
->sum();
Other examples:
/** @var Stream<int> $stream */
$stream = Stream::range(1, 10)->map(function(int $int): int {return $int * 5});
/** @var Option<Success> $option */
$option = Option::of(domainOperation());
/** @return Either<Failure,Success> */
function domainOperation(): Either {}
/** @var TryTo<Result> $result */
$result = TryTo::run(function(){throw new \DomainException('use ddd');});
$result->getOrElse(new Result())
The goal is to help achieve: Psalm was able to infer types for 100% of the codebase
Values:
Collections:
Other:
This library is inspired by vavr.io
Munus is released under the MIT Licence. See the bundled LICENSE file for details.