-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
420 lines (362 loc) · 8.34 KB
/
lib.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
<?php
namespace v;
class _V {
function __construct($value) {
$this->value = $value;
}
public function resolve() {
return $this->value;
}
public function __call($method, $args) {
if ($method === 'value') return $this->resolve();
$fn = __NAMESPACE__ . "\\" . $method;
if (function_exists($fn)) {
$this->value = call_user_func_array($fn, array_merge($args, [$this->value]));
return $this;
}
}
}
function _v($target) {
return new _V($target);
}
/**
* Returns the first item in an array.
*/
function first(array $arr) {
$copy = array_slice($arr, 0, 1, true);
return array_shift($copy);
}
/**
* Returns the last item in an array.
*/
function last(array $arr) {
$copy = array_slice($arr, 0, NULL, true);
return array_pop($copy);
}
/**
* Returns all but the first item in an array.
*/
function rest(array $arr) {
return array_slice($arr, 1, NULL, true);
}
/**
* Returns the second item in an array
*/
function second(array $arr) {
return first(rest($arr));
}
/**
* Returns all but the last item in an array.
*/
function butlast(array $arr) {
$copy = array_slice($arr, 0, -1, true);
return $copy;
}
/**
* All keys of an array.
*/
function keys($arr) {
return array_keys($arr);
}
/**
* All values of an array.
*/
function values($arr) {
return array_values($arr);
}
/**
* Returns true if the given predicate is true for all elements.
* credit: array_every and array_some.php
* https://gist.github.com/kid-icarus/8661319
*/
function every($callback, array $arr) {
foreach ($arr as $element) {
if (!$callback($element)) {
return FALSE;
}
}
return TRUE;
}
/**
* Returns true if the given predicate is true for at least one element.
* credit: array_every and array_some.php
* https://gist.github.com/kid-icarus/8661319
*/
function some($callback, array $arr) {
foreach ($arr as $element) {
if ($callback($element)) {
return TRUE;
}
}
return FALSE;
}
/**
* Returns true if the given predicate is not true for all elements.
*/
function not_every($callback, array $arr) {
return !every($callable, $arr);
}
/**
* Returns false if $callback($x) is logical true for any $x in $arr, else true.
*/
function not_any($callback, array $arr) {
return !some($callback, $arr);
}
/**
* Returns true if x is logical false, false otherwise.
*/
function not($x) {
return $x ? FALSE : TRUE;
}
/**
* Alias call_user_func_array to apply.
*/
function apply($callback, array $args) {
return call_user_func_array($callback, $args);
}
/**
* Takes a fn f and returns a fn that takes the same args as f,
* has the same effects, if any, and returns the opposite truth value.
*/
function complement($f) {
return function() use ($f) {
$args = func_get_args();
return !apply($f, $args);
};
}
/**
* These are the standard arities for these functions in PHP.
*
* array_map($callback, $arr)
* array_filter($arr, $callback, $flag=NULL)
* array_reduce($arr, $callback, $initial=NULL)
*
* Lets normalize them.
*/
/**
* Applies to each item in array, return new array.
*/
function map($callback, array $arr) {
return array_map($callback, $arr);
}
/**
* Return a new array with elements for which predicate returns true.
*/
function filter($callback, array $arr, $flag=0) {
return array_filter($arr, $callback, $flag);
}
/**
* Iteratively reduce the array to a single value using a callback function.
*/
function reduce($callback, array $arr, $initial=null) {
return array_reduce($arr, $callback, $initial);
}
/**
* Return a new array with elements for which predicate returns false.
*/
function remove($callback, array $arr, $flag=0) {
return filter(complement($callback), $arr, $flag);
}
/**
* cons(truct)
* Returns a new array where x is the first element and $arr is the rest.
*/
function cons($x, array $arr) {
return array_merge(array($x), $arr);
}
/**
* conj(oin)
* Returns a new arr with the xs added.
* @param $arr
* @param & xs add'l args to be added to $arr.
*/
function conj() {
$args = func_get_args();
$arr = first($args);
return array_merge($arr, rest($args));
}
/**
* Alias array_merge to concat.
*/
function concat() {
$arrs = func_get_args();
return apply('array_merge', $arrs);
}
/**
* Returns a sequence of the first item in each collection then the second, etc.
*/
function interleave() {
$arrs = func_get_args();
$firsts = map('v\first', $arrs);
$rests = map('v\rest', $arrs);
if (every(function($a) { return !empty($a); }, $rests)) {
return concat($firsts, apply('v\interleave', $rests));
}
return $firsts;
}
/**
* Alias implode to interpose.
*/
function interpose($glue, array $pieces) {
return implode($glue, $pieces);
}
/**
* Returns true if number is even.
*/
function even($n) {
return $n % 2 == 0;
}
/**
* Returns true if number is odd.
*/
function odd($n) {
$odd = complement('v\even');
return $odd($n);
}
/**
*
*/
function loop(array $bindings) {
$args = func_get_args();
$exprs = rest($args);
if (!even(count($bindings))) {
throw new Exception('Bindings should be an array with an even number of values');
}
}
/**
* Takes a set of fns, returns new fn of variable args
* that applies the rightmost fn, and so on.
* Note on lambdas:
* https://php100.wordpress.com/2009/04/13/php-y-combinator/
*/
function comp() {
$fns = func_get_args();
return function() use ($fns) {
$args = func_get_args();
$l = function($xs, $fns) use (&$l) {
if (empty($fns)) {
return $xs;
}
return $l(apply(last($fns), (array)$xs), butlast($fns));
};
return $l($args, $fns);
};
}
function juxt() {
$fns = func_get_args();
return function() use ($fns) {
$args = func_get_args();
$l = function($fn) use ($args) {
return apply($fn, $args);
};
return map($l, $fns);
};
}
/**
* Returns true if key is present in the given collection, otherwise returns false.
*/
function contains(array $arr, $key) {
return array_key_exists($key, $arr);
}
/**
* Returns a array containing only those entries in array whose key is in keys
*/
function select_keys(array $arr, array $keys) {
return reduce(function($coll, $key) use ($arr) {
if (contains($arr, $key)) {
$coll[$key] = $arr[$key];
}
return $coll;
}, $keys, array());
}
/**
* Return true if an array is an associative array, false if sequential or empty
*/
function is_assoc(array $arr) {
return keys($arr) !== range(0, count($arr) - 1);
}
/**
* Return item in array at the given key or index.
*/
function get(array $arr, $key, $missing=null) {
return isset($arr[$key]) ? $arr[$key] : $missing;
}
/**
* Quotient of dividing numerator by denominator.
*/
function quot($num, $div) {
return (int)($num / $div);
}
/**
* Returns the result of applying concat to the result of mapping f over colls
*/
function mapcat() {
$args = func_get_args();
return apply('v\concat', map(first($args), second($args)));
}
/**
* Reverse an array.
*/
function reverse($arr) {
return array_reverse($arr);
}
/**
* Merge an assoc array, if keys overlap, the latter wins.
*/
function merge() {
$args = func_get_args();
if (!every('is_assoc', $args)) return false;
return apply('array_merge', $args);
}
// use update_in ???
/**
* Return a map of elements of coll keyed by result of f on each element.
* f can be a key.
*/
function group_by($f, array $arr) {
return reduce(function($grouped, $arg) use ($f) {
$val = function_exists($f) ? $f($arg) : $arg[$f];
if (!isset($grouped[$val])) {
$grouped[$val] = [];
}
$grouped[$val] = conj($grouped[$val], $arg);
return $grouped;
}, $arr, []);
}
function distinct() {
$args = func_get_args();
return apply('array_unique', $args);
}
function rem($num, $div) {
return $num % $div;
}
function is_zero($n) {
return $n === 0;
}
function is_pos($n) {
return $n > 0;
}
function mod($num, $div) {
// (let [m (rem num div)]
// (if (or (zero? m) (= (pos? num) (pos? div)))
// m
// (+ m div))))
$m = rem($num, $div);
if (is_zero($m) || is_pos($num) === is_pos($div)) {
return $m;
}
return $m + $div;
}
function is_distinct($arr) {
return count(distinct($arr)) === count($arr);
}
function frequencies($arr) {
return reduce(function($frequencies, $item) {
if (isset($frequencies[$item])) {
$frequencies[$item]++;
} else {
$frequencies[$item] = 1;
}
return $frequencies;
}, $arr, []);
}