1. Go to this page and download the library: Download marcosh/lamphpda library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
marcosh / lamphpda example snippets
/**
* @template A
*/
interface Semigroup
{
/**
* @param A $a
* @param A $b
* @return A
*/
public function append($a, $b);
}
/**
* @implements Semigruop<int>
*/
final class IntAddition implements Semigroup
{
/**
* @param int $a
* @param int $b
* @return int
*/
public function append($a, $b): int
{
return $a + $b;
}
}
(new IntAddition())->append(1, 2); // returns 3
/**
* @template A
* @template B
*/
final class Either
{
/**
* @template C
* @param Apply<EitherBrand<A>> $apply
* @param HK1<EitherBrand<A>, callable(B): C> $f
* @return Either<A, C>
*/
public function iapply(Apply $apply, HK1 $f): self
}
/**
* @template A
* @template B
*/
final class Either
{
/**
* @template C
* @param HK1<EitherBrand<A>, callable(B): C> $f
* @return Either<A, C>
*/
public function apply(HK1 $f): self
{
return $this->iapply(new EitherApply(), $f);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.