-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEither.php
48 lines (39 loc) · 942 Bytes
/
Either.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
class Either {
private $val = null;
private $isRight = TRUE;
private function __construct( $val, $isRight ) {
$this->val = $val;
$this->isRight = $isRight;
}
public static function Right( $right ) {
$instance = new self( $right, TRUE );
return $instance;
}
public static function Left( $left ) {
$instance = new self( $left, FALSE );
return $instance;
}
public function map(callable $mapping) {
if ( $this->isRight ) {
$result = call_user_func( $mapping, $this->val );
return Either::Right( $result );
}
return Either::Left( $val );
}
public function bind(callable $binding) {
if ( $this->isRight ) {
return call_user_func($binding, $this->val);
} else {
return Either::Left( $val );
}
}
}
$rightTwo = Either::Right(2);
//Right 2
function addTwo($number) {
return $number+2;
}
$rightFour = $rightTwo->map("addTwo");
//Right 4
?>