-
Notifications
You must be signed in to change notification settings - Fork 0
/
functional.php
628 lines (514 loc) · 13.4 KB
/
functional.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<?php
namespace Prelude;
use Closure;
use Exception;
use Generator;
use ReflectionFunction;
use ReflectionMethod;
function ary($collection) {
if (is_array($collection)) {
return $collection;
} elseif (is_string($collection)) {
return str_split($collection);
} elseif ($collection instanceof Arrayable) {
return $collection->toArray();
} elseif ($collection instanceof \Generator) {
$array = [];
while ($collection->valid()) {
$array[] = $collection->current();
$collection->next();
}
return $array;
} elseif ($collection instanceof \Iterator) {
return iterator_to_array($collection);
}
throw new Exception('Could not convert to array');
}
function col($collection, array $array) {
if (is_string($collection)) {
return implode('', $array);
} elseif ($collection instanceof Arrayable) {
return $collection->fromArray($array);
}
return $array;
}
function append($item, $collection) {
$array = ary($collection);
array_push($array, $item);
return col($collection, $array);
}
function prepend($item, $collection) {
$array = ary($collection);
array_unshift($array, $item);
return col($collection, $array);
}
function foldr(callable $callable, $initial, $collection) {
foreach (ary($collection) as $item) {
$initial = $callable($item, $initial);
}
return $initial;
}
function foldl(callable $callable, $initial, $array) {
return foldr(flip($callable), $initial, $array);
}
function map(callable $callable, $collection) {
$array = ary($collection);
foreach ($array as $key => $value) {
$array[$key] = $callable($value);
}
return col($collection, $array);
}
function filter(callable $callable, $collection) {
$array = [];
foreach ($collection as $key => $value) {
if($callable($value)) $array[$key] = $value;
}
return col($collection, $array);
}
function head($array) {
return take(1, $array);
}
function last($array) {
return take(-1, $array);
}
function tail($array) {
return drop(1, $array);
}
function init($array) {
return drop(-1, $array);
}
function reverse($array) {
return foldr('Prelude\prepend', [], $array);
}
function concat($collection) {
return col($collection, array_merge(...ary($collection)));
}
function any(callable $callable, $array) {
return count(filter($callable, $array)) > 0;
}
function all(callable $callable, $array) {
return count(filter($callable, $array)) === count($array);
}
function contains($item, $iterator) {
return any(partial('Prelude\equals', $item), $iterator);
}
function equals($a, $b) {
return $a === $b;
}
function null($item) {
return ! $item;
}
function id($item) {
return $item;
}
function constant($item) {
return function() use ($item) { return $item; };
}
function insert($index, $value, $array) {
return $array[$index] = $value;
}
function exists($index, $array) {
return isset($array[$index]);
}
function delete($index, $array) {
unset($array[$index]);
return $array;
}
function pick($index, $array) {
return $array[$index];
}
function pluck($index, $collection) {
return map(partial('pick', $index), $collection);
}
function take($size, $collection) {
if ($collection instanceof Generator) {
if ($size < 0) throw new Exception('Can\'t take items from end of Generators');
$count = 0;
$array = [];
while ($count++ < $size) {
$collection->next();
$array[] = $collection->current();
}
return $array;
}
return $size > 0
? col($collection, array_slice(ary($collection), 0, $size))
: col($collection, array_slice(ary($collection), $size));
}
function drop($size, $collection) {
return $size > 0
? col($collection, array_slice(ary($collection), $size))
: col($collection, array_slice(ary($collection), 0, $size));
}
function zip(...$arrays) {
$zipped = [];
$matrix = map(partial('Prelude\take', min(map('count', $arrays))), $arrays);
while(!all('Prelude\not', $matrix)) {
$zipped[] = concat(map('Prelude\head', $matrix));
$matrix = map('Prelude\tail', $matrix);
}
return $zipped;
}
function map_to_tuple($array) {
return zip(array_keys(ary($array)), ary($array));
}
function tuple_to_map($array) {
$keys = concat(map('Prelude\head', $array));
$values = concat(map('Prelude\last', $array));
return array_combine($keys, $values);
}
// String
function chars($chars) {
return str_split($chars);
}
function unchars($chars) {
return implode('', $chars);
}
function words($words) {
return explode(' ', $words);
}
function unwords($words) {
return implode(' ', $words);
}
function lines($lines) {
return explode(PHP_EOL, $lines);
}
function unlines($lines) {
return implode(PHP_EOL, $lines);
}
// Infinite List
function times(callable $callable, $size) {
$count = 0;
while ($count++ < $size) yield $callable();
}
function iterate(callable $callable, $initial) {
while(true) yield $initial = $callable($initial);
}
function repeat($item) {
while (true) yield $item;
}
function replicate($item, $size) {
$count = 0;
while ($count++ < $size) yield $item;
}
function cycle($list) {
while (true) foreach ($list as $item) yield $item;
}
// PHP Specials
function compare_ord(Ord $a, Ord $b) {
return $a->compare($b);
}
function flip(callable $callable) {
return function(...$params) use ($callable) {
return $callable(...array_reverse($params));
};
}
function splat(callable $callable) {
return function($params) use ($callable) {
return $callable(...$params);
};
}
function unsplat(callable $callable) {
return function(...$params) use ($callable) {
return $callable($params);
};
}
function compose(callable $callable1, callable $callable2) {
return function(...$params) use ($callable1, $callable2) {
return $callable1($callable2(...$params));
};
}
function partial(callable $callable, ...$params) {
return function (...$more) use($params, $callable) {
return $callable(...array_merge($params, $more));
};
}
function apply(...$params) {
return function ($callable) use ($params) {
return $callable(...$params);
}
}
function call(callable $callable, ...$params) {
return $callable(...$params);
}
function method($method) {
return function ($object) use($method) {
return [$object, $method];
};
}
function reflect_callable(callable $callable) {
$callable = (is_string($callable) && strpos($callable, '::') !== false)
? explode('::', $callable, 2)
: $callable;
if (is_array($callable) && count($callable) === 2) {
list($class, $method) = array_values($callable);
if (is_string($class) && ! method_exists($class, $method)) {
$method = '__callStatic';
}
if (is_object($class) && ! method_exists($class, $method)) {
$method = '__call';
}
return new ReflectionMethod($class, $method);
} elseif ($callable instanceof Closure || is_string($callable)) {
return new ReflectionFunction($callable);
} elseif (is_object($callable) && method_exists($callable, '__invoke')) {
return new ReflectionMethod($callable, '__invoke');
}
throw new Exception('Could not parse function');
}
function curry(callable $callable, $count = null) {
$count = is_null($count) ? reflect_callable($callable)->getNumberOfRequiredParameters() : $count;
return $count === 0 ? $callable : function (...$params) use($callable, $count) {
$apply = partial($callable, ...$params);
return count($params) >= $count ? $apply() : curry($apply, $count - count($params));
};
}
class Foo { public function bar($name, $box) { echo $name . $box . PHP_EOL; } }
// Interfaces
interface Arrayable
{
public function toArray();
public function fromArray(array $array);
}
interface Eq
{
public function equal(Eq $other);
public function notEqual(Eq $other);
}
interface Ord extends Eq
{
public function compare(Ord $other);
public function lt(Ord $other);
public function lte(Ord $other);
public function gt(Ord $other);
public function gte(Ord $other);
public function max(Ord $other);
public function min(Ord $other);
}
interface Show
{
public function __toString();
}
interface Read
{
public function read($string);
}
interface Enum
{
public function succ();
public function pred();
public function range();
}
interface Bounded
{
public function minBound();
public function maxBound();
}
interface Monoid
{
public function emptyValue();
public function append($value);
public function concat($value);
}
interface Functor
{
public function map(callable $callable);
public function pure($value);
}
interface Applicative extends Functor
{
public function apply(Functor $callable);
}
interface Monad extends Applicative
{
public function bind(callable $callable);
}
interface Comonad extends Applicative
{
public function duplicate();
public function extend(callable $callable);
public function extract();
}
interface Foldable extends \Countable
{
public function fold();
public function foldMap(callable $callable);
public function foldr(callable $callable, $initial);
public function foldl(callable $callable, $initial);
public function null();
public function elem($element);
public function maximum();
public function minimum();
public function sum();
public function product();
public function toArray();
}
abstract class Maybe implements Monad, Comonad
{
public function pure($value)
{
return new Just($value);
}
public function extend(callable $callable)
{
return $this->pure(call_user_func($callable, $this));
}
public function duplicate()
{
return $this->pure($this);
}
static public function just($value)
{
return new Just($value);
}
static public function nothing()
{
return new Nothing();
}
}
class Just extends Maybe
{
/**
* @var mixed
*/
private $value;
/**
* Just constructor.
* @param mixed $value
*/
public function __construct($value)
{
$this->value = $value;
}
public function map(callable $callable)
{
return new Just(call_user_func($callable, $this->value));
}
public function apply(Functor $callable)
{
return $callable->map(function($function) {
return call_user_func($function, $this->value);
});
}
public function bind(callable $callable)
{
return call_user_func($callable, $this->value);
}
public function extract()
{
return $this->value;
}
}
class Nothing extends Maybe
{
public function map(callable $callable)
{
return new Nothing();
}
public function apply(Functor $callable)
{
return new Nothing();
}
public function bind(callable $callable)
{
return new Nothing();
}
public function extract()
{
return null;
}
}
class Collection implements Monad, Monoid, Foldable
{
/**
* @var array
*/
private $values;
/**
* Just constructor.
* @param array $values
*/
public function __construct(array $values)
{
$this->values = $values;
}
public function pure($value)
{
return new Collection($value);
}
public function map(callable $callable)
{
return $this->pure(array_map($callable, $this->values));
}
public function apply(Functor $callable)
{
return $callable->map(function($function) {
return array_map($function, $this->values);
});
}
public function bind(callable $callable)
{
return array_map($callable, $this->values);
}
public function emptyValue()
{
return $this->pure([]);
}
public function append($value)
{
return $this->pure(array_merge([$value], $this->values));
}
public function concat($value)
{
return $this->pure(array_merge($value, $this->values));
}
public function count()
{
return count($this->values);
}
public function fold()
{
return $this->foldMap(function ($a) { return $a; });
}
public function foldMap(callable $callable)
{
$appender = function ($a, $b) { return $a->append($b); };
return $this->map($callable)->foldl($appender, $this->emptyValue());
}
public function foldr(callable $callable, $initial)
{
return array_reduce($this->values, $callable, $initial);
}
public function foldl(callable $callable, $initial)
{
return array_reduce($this->values, flip($callable), $initial);
}
public function null()
{
return empty($this->values);
}
public function elem($element)
{
return in_array($element, $this->values);
}
public function maximum()
{
return max($this->values);
}
public function minimum()
{
return min($this->values);
}
public function sum()
{
return array_sum($this->values);
}
public function product()
{
return array_product($this->values);
}
public function toArray()
{
return $this->values;
}
}