-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIdentity.php
116 lines (105 loc) · 2.28 KB
/
Identity.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
declare(strict_types = 1);
namespace Innmind\Immutable;
use Innmind\Immutable\Identity\{
Implementation,
InMemory,
Lazy,
Defer,
};
/**
* @psalm-immutable
* @template T
*/
final class Identity
{
/** @var Implementation<T> */
private Implementation $implementation;
/**
* @param Implementation<T> $implementation
*/
private function __construct(Implementation $implementation)
{
$this->implementation = $implementation;
}
/**
* @psalm-pure
* @template A
*
* @param A $value
*
* @return self<A>
*/
public static function of(mixed $value): self
{
return new self(new InMemory($value));
}
/**
* When using a lazy computation all transformations via map and flatMap
* will be applied when calling unwrap. Each call to unwrap will call again
* all transformations.
*
* @psalm-pure
* @template A
*
* @param callable(): A $value
*
* @return self<A>
*/
public static function lazy(callable $value): self
{
return new self(new Lazy($value));
}
/**
* When using a deferred computation all transformations via map and flatMap
* will be applied when calling unwrap. The value is computed once and all
* calls to unwrap will return the same value.
*
* @psalm-pure
* @template A
*
* @param callable(): A $value
*
* @return self<A>
*/
public static function defer(callable $value): self
{
return new self(new Defer($value));
}
/**
* @template U
*
* @param callable(T): U $map
*
* @return self<U>
*/
public function map(callable $map): self
{
return new self($this->implementation->map($map));
}
/**
* @template U
*
* @param callable(T): self<U> $map
*
* @return self<U>
*/
public function flatMap(callable $map): self
{
return $this->implementation->flatMap($map);
}
/**
* @return Sequence<T>
*/
public function toSequence(): Sequence
{
return $this->implementation->toSequence();
}
/**
* @return T
*/
public function unwrap(): mixed
{
return $this->implementation->unwrap();
}
}