mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-21 e75a20334813452c6912c090d70a0de2c805f94d
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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
;ELC
;;; Compiled
;;; in Emacs version 26.1
;;; with all optimizations.
 
;;; This file uses dynamic docstrings, first added in Emacs 19.29.
 
;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
(custom-declare-group 'dash nil "Customize group for dash.el" :group 'lisp :prefix "dash-")
#@21 
 
(fn SYMBOL VALUE)
(defalias 'dash--enable-fontlock #[514 "\211\203\300 \210\301\"\207" [dash-enable-font-lock set-default] 5 (#$ . 500)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311\312\313&    \207" [custom-declare-variable dash-enable-fontlock funcall function #[0 "\300\207" [nil] 1] "If non-nil, enable fontification of dash functions, macros and\nspecial values." :type boolean :set dash--enable-fontlock :group dash] 10)
#@64 Destructive: Set CDR to the cons of CAR and CDR.
 
(fn CAR CDR)
(defalias '!cons '(macro . #[514 "\300\301EE\207" [setq cons] 7 (#$ . 947)]))
#@54 Destructive: Set LIST to the cdr of LIST.
 
(fn LIST)
(defalias '!cdr '(macro . #[257 "\300\301DE\207" [setq cdr] 5 (#$ . 1097)]))
#@50 Anaphoric form of `-each'.
 
(fn LIST &rest BODY)
(defalias '--each '(macro . #[385 "\300\301!\302D\303B\304\302\305\306DDCBB\307\310D\257E\207" [make-symbol "list" let ((it-index 0)) while it car (setq it-index (1+ it-index)) !cdr] 11 (#$ . 1235)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --each edebug-form-spec (form body) function-put lisp-indent-function 1] 4)
#@251 Eval a form, then insert that form as the 2nd argument to other forms.
The EVAL-INITIAL-VALUE form is evaluated once. Its result is
passed to FORMS, which are then evaluated sequentially. Returns
the target form.
 
(fn EVAL-INITIAL-VALUE &rest FORMS)
(defalias '-doto '(macro . #[385 "\300\301!\302DC\303\304\305\306\307\310\311    !\312\"\313\314%\"C\"BB\207" [make-symbol "value" let append mapcar make-byte-code 257 "\301!\203\302!\300ABB\207\303\304\300E\207" vconcat vector [sequencep -first-item funcall form] 4 "\n\n(fn FORM)"] 13 (#$ . 1643)]))
(byte-code "\300\301\302\303#\300\207" [function-put -doto lisp-indent-function 1] 4)
#@88 Call FN with every item in LIST. Return nil, used for side-effects only.
 
(fn LIST FN)
(defalias '-each #[514 "\300\205@!\266\211T\262A\262\202\207" [0] 7 (#$ . 2295)])
(byte-code "\300\301\302\303#\210\304\305\306\"\207" [put -each lisp-indent-function 1 defalias --each-indexed --each] 4)
#@170 Call (FN index item) for each item in LIST.
 
In the anaphoric form `--each-indexed', the index is exposed as symbol `it-index'.
 
See also: `-map-indexed'.
 
(fn LIST FN)
(defalias '-each-indexed #[514 "\300\205@\"\266\211T\262A\262\202\207" [0] 8 (#$ . 2606)])
(put '-each-indexed 'lisp-indent-function 1)
#@61 Anaphoric form of `-each-while'.
 
(fn LIST PRED &rest BODY)
(defalias '--each-while '(macro . #[642 "\300\301!\300\302!\303D\304B\305BB\306\307E\303\310\311DDC\312\313 D\314    \315BB BBBE\316\317D\257E\207" [make-symbol "list" "continue" let (t) ((it-index 0)) while and it car if not setq (nil) (setq it-index (1+ it-index)) !cdr] 16 (#$ . 2931)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --each-while edebug-form-spec (form form body) function-put lisp-indent-function 2] 4)
#@122 Call FN with every item in LIST while (PRED item) is non-nil.
Return nil, used for side-effects only.
 
(fn LIST PRED FN)
(defalias '-each-while #[771 "\300\301\205)\205)@!\204\302\262\202!\210\210\211T\262A\262\202\207" [t 0 nil] 9 (#$ . 3452)])
(put '-each-while 'lisp-indent-function 2)
#@52 Anaphoric form of `-each-r'.
 
(fn LIST &rest BODY)
(defalias '--each-r '(macro . #[385 "\300\301!\302\303DD\304\305DD\306BB\307\310\311\312\313\314\315BBEBBBBE\207" [make-symbol "vector" let* vconcat it-index length (it) while (> it-index 0) (setq it-index (1- it-index)) setq it aref (it-index)] 13 (#$ . 3767)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --each-r edebug-form-spec (form body) function-put lisp-indent-function 1] 4)
#@107 Call FN with every item in LIST in reversed order.
 Return nil, used for side-effects only.
 
(fn LIST FN)
(defalias '-each-r #[514 "\300!\211G\301\302V\205S\262H\262!\210\202\207" [vconcat nil 0] 7 (#$ . 4239)])
#@63 Anaphoric form of `-each-r-while'.
 
(fn LIST PRED &rest BODY)
(defalias '--each-r-while '(macro . #[642 "\300\301!\302\303DD\304\305DD\306BB\307\310\311\312\313\314\315BBE\316\317\nD\320\nBBB\257E\207" [make-symbol "vector" let* vconcat it-index length (it) while (> it-index 0) (setq it-index (1- it-index)) setq it aref (it-index) if not (setq it-index -1)] 14 (#$ . 4470)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --each-r-while edebug-form-spec (form form body) function-put lisp-indent-function 2] 4)
#@131 Call FN with every item in reversed LIST while (PRED item) is non-nil.
Return nil, used for side-effects only.
 
(fn LIST PRED FN)
(defalias '-each-r-while #[771 "\300!\211G\301\302V\205(S\262H\262!\204!\303\262\202!\210\202\207" [vconcat nil 0 -1] 8 (#$ . 5018)])
#@134 Repeatedly executes BODY (presumably for side-effects) with symbol `it' bound to integers from 0 through NUM-1.
 
(fn NUM &rest BODY)
(defalias '--dotimes '(macro . #[385 "\300\301!\302D\303B\304\305\306E\307\310\"BBE\207" [make-symbol "num" let ((it 0)) while < it append ((setq it (1+ it)))] 10 (#$ . 5307)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --dotimes edebug-form-spec (form body) function-put lisp-indent-function 1] 4)
#@106 Repeatedly calls FN (presumably for side-effects) passing in integers from 0 through NUM-1.
 
(fn NUM FN)
(defalias '-dotimes #[514 "\300\211W\205!\210\211T\262\202\207" [0] 6 (#$ . 5774)])
(put '-dotimes 'lisp-indent-function 1)
#@95 Return a new list consisting of the result of applying FN to the items in LIST.
 
(fn FN LIST)
(defalias '-map #[514 "\300\"\207" [mapcar] 5 (#$ . 6018)])
#@43 Anaphoric form of `-map'.
 
(fn FORM LIST)
(defalias '--map '(macro . #[514 "\300\301\302EE\207" [mapcar lambda (it)] 6 (#$ . 6180)]))
(put '--map 'edebug-form-spec '(form form))
#@65 Anaphoric form of `-reduce-from'.
 
(fn FORM INITIAL-VALUE LIST)
(defalias '--reduce-from '(macro . #[771 "\300\301DC\302\303\301EE\304BBB\207" [let acc --each setq (acc)] 10 (#$ . 6366)]))
(put '--reduce-from 'edebug-form-spec '(form form form))
#@354 Return the result of applying FN to INITIAL-VALUE and the
first item in LIST, then applying FN to that result and the 2nd
item, etc. If LIST contains no items, return INITIAL-VALUE and
do not call FN.
 
In the anaphoric form `--reduce-from', the accumulated value is
exposed as symbol `acc'.
 
See also: `-reduce', `-reduce-r'
 
(fn FN INITIAL-VALUE LIST)
(defalias '-reduce-from #[771 "\300\203@\"\262\210\211T\262A\262\202\266\211\207" [0] 10 (#$ . 6623)])
#@46 Anaphoric form of `-reduce'.
 
(fn FORM LIST)
(defalias '--reduce '(macro . #[514 "\300\301!\302DC\303\304\305D\306DF\302\307    EFE\207" [make-symbol "list-value" let if --reduce-from car cdr (acc it)] 12 (#$ . 7102)]))
(put '--reduce 'edebug-form-spec '(form form))
#@404 Return the result of applying FN to the first 2 items in LIST,
then applying FN to that result and the 3rd item, etc. If LIST
contains no items, return the result of calling FN with no
arguments. If LIST contains a single item, return that item
and do not call FN.
 
In the anaphoric form `--reduce', the accumulated value is
exposed as symbol `acc'.
 
See also: `-reduce-from', `-reduce-r'
 
(fn FN LIST)
(defalias '-reduce #[514 "\211\203\f\300@A#\207 \207" [-reduce-from] 6 (#$ . 7383)])
#@70 Anaphoric version of `-reduce-r-from'.
 
(fn FORM INITIAL-VALUE LIST)
(defalias '--reduce-r-from '(macro . #[771 "\300\301DF\207" [--reduce-from reverse] 8 (#$ . 7882)]))
(put '--reduce-r-from 'edebug-form-spec '(form form form))
#@331 Replace conses with FN, nil with INITIAL-VALUE and evaluate
the resulting expression. If LIST is empty, INITIAL-VALUE is
returned and FN is not called.
 
Note: this function works the same as `-reduce-from' but the
operation associates from right instead of from left.
 
See also: `-reduce-r', `-reduce'
 
(fn FN INITIAL-VALUE LIST)
(defalias '-reduce-r-from #[771 "\300!\301\203@\"\262\210\211T\262A\262\202\266\211\207" [reverse 0] 10 (#$ . 8121)])
#@51 Anaphoric version of `-reduce-r'.
 
(fn FORM LIST)
(defalias '--reduce-r '(macro . #[514 "\300\301DE\207" [--reduce reverse] 6 (#$ . 8592)]))
(put '--reduce-r 'edebug-form-spec '(form form))
#@480 Replace conses with FN and evaluate the resulting expression.
The final nil is ignored. If LIST contains no items, return the
result of calling FN with no arguments. If LIST contains a single
item, return that item and do not call FN.
 
The first argument of FN is the new item, the second is the
accumulated value.
 
Note: this function works the same as `-reduce' but the operation
associates from right instead of from left.
 
See also: `-reduce-r-from', `-reduce'
 
(fn FN LIST)
(defalias '-reduce-r #[514 "\211\203:\300!\211\2031\211@A\301\203)@\"\262\210\211T\262A\262\202\266\211\262\2029\302\211\"\266\202\207 \207" [reverse 0 nil] 10 (#$ . 8791)])
#@188 Return a list of the intermediate values of the reduction.
 
See `-reduce-from' for explanation of the arguments.
 
See also: `-reductions', `-reductions-r', `-reduce-r'
 
(fn FN INIT LIST)
(defalias '-reductions-from #[771 "C\300\203 @@\"B\262\210\211T\262A\262\202\266\211\262\237\207" [0] 10 (#$ . 9475)])
#@183 Return a list of the intermediate values of the reduction.
 
See `-reduce' for explanation of the arguments.
 
See also: `-reductions-from', `-reductions-r', `-reduce-r'
 
(fn FN LIST)
(defalias '-reductions #[514 "\211\205 \300@A#\207" [-reductions-from] 6 (#$ . 9806)])
#@188 Return a list of the intermediate values of the reduction.
 
See `-reduce-r-from' for explanation of the arguments.
 
See also: `-reductions-r', `-reductions', `-reduce'
 
(fn FN INIT LIST)
(defalias '-reductions-r-from #[771 "C\300!\301\203\"@@\"B\262\210\211T\262A\262\202\266\211\207" [reverse 0] 10 (#$ . 10086)])
#@183 Return a list of the intermediate values of the reduction.
 
See `-reduce-r' for explanation of the arguments.
 
See also: `-reductions-r-from', `-reductions', `-reduce'
 
(fn FN LIST)
(defalias '-reductions-r #[514 "\211\2050\300!\211@CA\301\203)@@\"B\262\210\211T\262A\262\202 \266\211\262\262\207" [reverse 0] 10 (#$ . 10425)])
#@69 Anaphoric form of `-filter'.
 
See also: `--remove'.
 
(fn FORM LIST)
(defalias '--filter '(macro . #[514 "\300\301!\302C\303\304\305\306EEE\307DF\207" [make-symbol "result" let --each when !cons it nreverse] 12 (#$ . 10778)]))
(put '--filter 'edebug-form-spec '(form form))
#@145 Return a new list of the items in LIST for which PRED returns a non-nil value.
 
Alias: `-select'
 
See also: `-keep', `-remove'.
 
(fn PRED LIST)
(defalias '-filter #[514 "\300\301\203 @!\203\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 8 (#$ . 11065)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -select -filter --select --filter] 3)
#@68 Anaphoric form of `-remove'.
 
See also `--filter'.
 
(fn FORM LIST)
(defalias '--remove '(macro . #[514 "\300\301DE\207" [--filter not] 5 (#$ . 11448)]))
(put '--remove 'edebug-form-spec '(form form))
#@124 Return a new list of the items in LIST for which PRED returns nil.
 
Alias: `-reject'
 
See also: `-filter'.
 
(fn PRED LIST)
(defalias '-remove #[514 "\300\301\203 @!\204\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 8 (#$ . 11657)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -reject -remove --reject --remove] 3)
#@137 Return a new list with the first item matching PRED removed.
 
Alias: `-reject-first'
 
See also: `-remove', `-map-first'
 
(fn PRED LIST)
(defalias '-remove-first #[514 "\300\203@!\204@B\262A\262\202\203&\301\237A\"\202(\211\237\207" [nil -concat] 6 (#$ . 12020)])
#@52 Anaphoric form of `-remove-first'.
 
(fn FORM LIST)
(defalias '--remove-first '(macro . #[514 "\300\301\302EE\207" [-remove-first lambda (it)] 6 (#$ . 12308)]))
(byte-code "\300\301\302\303#\210\304\305\306\"\210\304\307\301\"\207" [put --remove-first edebug-form-spec (form form) defalias -reject-first -remove-first --reject-first] 4)
#@134 Return a new list with the last item matching PRED removed.
 
Alias: `-reject-last'
 
See also: `-remove', `-map-last'
 
(fn PRED LIST)
(defalias '-remove-last #[514 "\300\301!\"\237\207" [-remove-first reverse] 6 (#$ . 12653)])
#@51 Anaphoric form of `-remove-last'.
 
(fn FORM LIST)
(defalias '--remove-last '(macro . #[514 "\300\301\302EE\207" [-remove-last lambda (it)] 6 (#$ . 12887)]))
(byte-code "\300\301\302\303#\210\304\305\306\"\210\304\307\301\"\207" [put --remove-last edebug-form-spec (form form) defalias -reject-last -remove-last --reject-last] 4)
#@92 Remove all occurences of ITEM from LIST.
 
Comparison is done with `equal'.
 
(fn ITEM LIST)
(defalias '-remove-item #[514 "\300\301\203!@\211\232\204\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 8 (#$ . 13224)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -remove-item pure t side-effect-free] 5)
#@44 Anaphoric form of `-keep'.
 
(fn FORM LIST)
(defalias '--keep '(macro . #[514 "\300\301!\300\302!\303C\304\303    DC\305\306     EEEE\307DF\207" [make-symbol "result" "mapped" let --each when !cons nreverse] 15 (#$ . 13579)]))
(put '--keep 'edebug-form-spec '(form form))
#@173 Return a new list of the non-nil results of applying FN to the items in LIST.
 
If you want to select the original items satisfying a predicate use `-filter'.
 
(fn FN LIST)
(defalias '-keep #[514 "\300\301\203\"@!\211\203\211B\262\266\211T\262A\262\202\266\211\237\207" [nil 0] 9 (#$ . 13860)])
#@49 Return all non-nil elements of LIST.
 
(fn LIST)
(defalias '-non-nil #[257 "\300\301\"\207" [-remove null] 4 (#$ . 14177)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -non-nil pure t side-effect-free] 5)
#@51 Anaphoric form of `-map-indexed'.
 
(fn FORM LIST)
(defalias '--map-indexed '(macro . #[514 "\300\301!\302C\303\304EE\305DF\207" [make-symbol "result" let --each !cons nreverse] 10 (#$ . 14414)]))
(put '--map-indexed 'edebug-form-spec '(form form))
#@211 Return a new list consisting of the result of (FN index item) for each item in LIST.
 
In the anaphoric form `--map-indexed', the index is exposed as symbol `it-index'.
 
See also: `-each-indexed'.
 
(fn FN LIST)
(defalias '-map-indexed #[514 "\300\301\203@\"B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 9 (#$ . 14676)])
#@52 Anaphoric form of `-map-when'.
 
(fn PRED REP LIST)
(defalias '--map-when '(macro . #[771 "\300\301!\302C\303\304\305        \306BBBEE\307DF\207" [make-symbol "result" let --each !cons if (it) nreverse] 13 (#$ . 15024)]))
(put '--map-when 'edebug-form-spec '(form form form))
#@266 Return a new list where the elements in LIST that do not match the PRED function
are unchanged, and where the elements in LIST that do match the PRED function are mapped
through the REP function.
 
Alias: `-replace-where'
 
See also: `-update-at'
 
(fn PRED REP LIST)
(defalias '-map-when #[771 "\300\301\203'@!\203!\202\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 9 (#$ . 15307)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -replace-where -map-when --replace-where --map-when] 3)
#@145 Replace first item in LIST satisfying PRED with result of REP called on this item.
 
See also: `-map-when', `-replace-first'
 
(fn PRED REP LIST)
(defalias '-map-first #[771 "\300\203@!\204@B\262A\262\202\203+\301\237@!AB\"\202-\211\237\207" [nil -concat] 8 (#$ . 15842)])
#@53 Anaphoric form of `-map-first'.
 
(fn PRED REP LIST)
(defalias '--map-first '(macro . #[771 "\300\301\302E\301\303\304FF\207" [-map-first lambda (it) (it) (ignore it)] 9 (#$ . 16140)]))
#@143 Replace last item in LIST satisfying PRED with result of REP called on this item.
 
See also: `-map-when', `-replace-last'
 
(fn PRED REP LIST)
(defalias '-map-last #[771 "\300\301!#\237\207" [-map-first reverse] 8 (#$ . 16336)])
#@52 Anaphoric form of `-map-last'.
 
(fn PRED REP LIST)
(defalias '--map-last '(macro . #[771 "\300\301\302E\301\303\304FF\207" [-map-last lambda (it) (it) (ignore it)] 9 (#$ . 16573)]))
#@123 Replace all OLD items in LIST with NEW.
 
Elements are compared using `equal'.
 
See also: `-replace-at'
 
(fn OLD NEW LIST)
(defalias '-replace #[771 "\300\301\203%@\211\232\203\202\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 9 (#$ . 16766)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -replace pure t side-effect-free] 5)
#@135 Replace the first occurence of OLD with NEW in LIST.
 
Elements are compared using `equal'.
 
See also: `-map-first'
 
(fn OLD NEW LIST)
(defalias '-replace-first #[771 "\300\301\302\303\304\305!\306\"\307\310%\301\302\311\304\305!\306\"\312\310%#\207" [-map-first make-byte-code 257 "\300\232\207" vconcat vector [] 3 "\n\n(fn IT)" "\300\207" 2] 11 (#$ . 17152)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -replace-first pure t side-effect-free] 5)
#@133 Replace the last occurence of OLD with NEW in LIST.
 
Elements are compared using `equal'.
 
See also: `-map-last'
 
(fn OLD NEW LIST)
(defalias '-replace-last #[771 "\300\301\302\303\304\305!\306\"\307\310%\301\302\311\304\305!\306\"\312\310%#\207" [-map-last make-byte-code 257 "\300\232\207" vconcat vector [] 3 "\n\n(fn IT)" "\300\207" 2] 11 (#$ . 17640)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -replace-last pure t side-effect-free] 5)
#@46 Anaphoric form of `-mapcat'.
 
(fn FORM LIST)
(defalias '--mapcat '(macro . #[514 "\300\301\302EE\207" [apply 'append --map] 7 (#$ . 18122)]))
(put '--mapcat 'edebug-form-spec '(form form))
#@118 Return the concatenation of the result of mapping FN over LIST.
Thus function FN should return a list.
 
(fn FN LIST)
(defalias '-mapcat #[514 "\300\301\302\303\304\305\306\307    !\310\"\311\312%\"\"\207" [apply append mapcar make-byte-code 257 "\300!\207" vconcat vector [] 3 "\n\n(fn IT)"] 11 (#$ . 18320)])
#@436 Take a nested list L and return its contents as a single, flat list.
 
Note that because `nil' represents a list of zero elements (an
empty list), any mention of nil in L will disappear after
flattening.  If you need to preserve nils, consider `-flatten-n'
or map them to some unique symbol and then map them back.
 
Conses of two atoms are considered "terminals", that is, they
aren't flattened further.
 
See also: `-flatten-n'
 
(fn L)
(defalias '-flatten #[257 "\211<\203\211A<\203\300\301\"\207\211C\207" [-mapcat -flatten] 4 (#$ . 18637)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -flatten pure t side-effect-free] 5)
#@52 Anaphoric version of `-iterate'.
 
(fn FORM INIT N)
(defalias '--iterate '(macro . #[771 "\300\301\302EF\207" [-iterate lambda (it)] 7 (#$ . 19297)]))
(put '--iterate 'edebug-form-spec '(form form form))
#@75 Flatten NUM levels of a nested LIST.
 
See also: `-flatten'
 
(fn NUM LIST)
(defalias '-flatten-n #[514 "\300\301\302T#!\207" [-last-item -iterate #[257 "\300\301\302\303\"\"\207" [apply append mapcar #[257 "\300!\207" [-list] 3 "\n\n(fn IT)"]] 6 "\n\n(fn IT)"]] 7 (#$ . 19509)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -flatten-n pure t side-effect-free] 5)
#@99 Return a new list with the concatenation of the elements in the supplied LISTS.
 
(fn &rest LISTS)
(defalias '-concat #[128 "\300\301\"\207" [apply append] 4 (#$ . 19906)])
(byte-code "\300\301\302\303#\300\301\304\303#\305\306\307\310#\207" [function-put -concat pure t side-effect-free defalias -copy copy-sequence "Create a shallow copy of LIST.\n\n(fn LIST)"] 6)
#@323 Splice lists generated by FUN in place of elements matching PRED in LIST.
 
FUN takes the element matching PRED as input.
 
This function can be used as replacement for `,@' in case you
need to splice several lists at marked positions (for example
with keywords).
 
See also: `-splice-list', `-insert-at'
 
(fn PRED FUN LIST)
(defalias '-splice #[771 "\300\301\203C@!\2032!\211\301\203-@\211B\262\210\211T\262A\262\202\266\2027\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 13 (#$ . 20280)])
#@51 Anaphoric form of `-splice'.
 
(fn PRED FORM LIST)
(defalias '--splice '(macro . #[771 "\300\301\302E\301\303EF\207" [-splice lambda (it) (it)] 8 (#$ . 20815)]))
#@121 Splice NEW-LIST in place of elements matching PRED in LIST.
 
See also: `-splice', `-insert-at'
 
(fn PRED NEW-LIST LIST)
(defalias '-splice-list #[771 "\300\301\302\303\304\305!\306\"\307\310%#\207" [-splice make-byte-code 257 "\300\207" vconcat vector [] 2 "\n\n(fn _)"] 11 (#$ . 20986)])
#@60 Anaphoric form of `-splice-list'.
 
(fn PRED NEW-LIST LIST)
(defalias '--splice-list '(macro . #[771 "\300\301\302EF\207" [-splice-list lambda (it)] 7 (#$ . 21285)]))
#@204 Make a new list from the elements of ARGS.
 
The last 2 members of ARGS are used as the final cons of the
result so if the final member of ARGS is not a list the result is
a dotted list.
 
(fn &rest ARGS)
(defalias '-cons* #[128 "\300\301\"\207" [-reduce-r cons] 4 (#$ . 21461)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -cons* pure t side-effect-free] 5)
#@182 Append ELEM to the end of the list.
 
This is like `cons', but operates on the end of list.
 
If ELEMENTS is non nil, append these to the list as well.
 
(fn LIST ELEM &rest ELEMENTS)
(defalias '-snoc #[642 "\300C#\207" [-concat] 7 (#$ . 21852)])
#@45 Anaphoric form of `-first'.
 
(fn FORM LIST)
(defalias '--first '(macro . #[514 "\300\301!\302C\303\304D\305\306\307BBEFF\207" [make-symbol "needle" let --each-while not when setq (it)] 13 (#$ . 22105)]))
(put '--first 'edebug-form-spec '(form form))
#@163 Return the first x in LIST where (PRED x) is non-nil, else nil.
 
To get the first item in the list no questions asked, use `car'.
 
Alias: `-find'
 
(fn PRED LIST)
(defalias '-first #[514 "\300\301\302\203.\203.@\203\300\262\202\"!\203\"\211\262\210\211T\262A\262\202\266\211\207" [nil t 0] 9 (#$ . 22370)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -find -first --find --first] 3)
#@44 Anaphoric form of `-some'.
 
(fn FORM LIST)
(defalias '--some '(macro . #[514 "\300\301!\302C\303\304D\305    EFF\207" [make-symbol "needle" let --each-while not setq] 11 (#$ . 22796)]))
(put '--some 'edebug-form-spec '(form form))
#@109 Return (PRED x) for the first LIST item where (PRED x) is non-nil, else nil.
 
Alias: `-any'
 
(fn PRED LIST)
(defalias '-some #[514 "\300\301\302\203*\203*@\203\300\262\202!\262\210\211T\262A\262\202\266\211\207" [nil t 0] 9 (#$ . 23038)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -any -some --any --some] 3)
#@44 Anaphoric form of `-last'.
 
(fn FORM LIST)
(defalias '--last '(macro . #[514 "\300\301!\302C\303\304\305\306BBEEF\207" [make-symbol "needle" let --each when setq (it)] 12 (#$ . 23393)]))
(put '--last 'edebug-form-spec '(form form))
#@80 Return the last x in LIST where (PRED x) is non-nil, else nil.
 
(fn PRED LIST)
(defalias '-last #[514 "\300\301\203@!\203\211\262\210\211T\262A\262\202\266\211\207" [nil 0] 8 (#$ . 23638)])
(byte-code "\300\301\302\303#\210\304\301\305\306#\210\304\301\307\310#\210\300\311\312\313#\210\300\314\315\316#\207" [defalias -first-item car "Return the first item of LIST, or nil on an empty list.\n\nSee also: `-second-item', `-last-item'.\n\n(fn LIST)" put byte-opcode byte-car byte-compile byte-compile-one-arg -second-item cadr "Return the second item of LIST, or nil if LIST is too short.\n\nSee also: `-third-item'.\n\n(fn LIST)" -third-item caddr "Return the third item of LIST, or nil if LIST is too short.\n\nSee also: `-fourth-item'.\n\n(fn LIST)"] 4)
#@99 Return the fourth item of LIST, or nil if LIST is too short.
 
See also: `-fifth-item'.
 
(fn LIST)
(defalias '-fourth-item #[257 "\211AAA@\207" [] 2 (#$ . 24416)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -fourth-item pure t side-effect-free] 5)
#@97 Return the fifth item of LIST, or nil if LIST is too short.
 
See also: `-last-item'.
 
(fn LIST)
(defalias '-fifth-item #[257 "\211AAAA@\207" [] 2 (#$ . 24696)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -fifth-item pure t side-effect-free] 5)
#@67 Return the last item of LIST, or nil on an empty list.
 
(fn LIST)
(defalias '-last-item #[257 "\300!@\207" [last] 3 (#$ . 24973)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -last-item pure t side-effect-free] 5)
#@68 Return a list of all items in list except for the last.
 
(fn LIST)
(defalias '-butlast #[257 "\300!\207" [butlast] 3 (#$ . 25220)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -butlast pure t side-effect-free] 5)
#@45 Anaphoric form of `-count'.
 
(fn PRED LIST)
(defalias '--count '(macro . #[514 "\300\301!\302\303BC\304\305\306\307    DEEEF\207" [make-symbol "result" let (0) --each when setq 1+] 13 (#$ . 25466)]))
(put '--count 'edebug-form-spec '(form form))
#@82 Counts the number of items in LIST where (PRED item) is non-nil.
 
(fn PRED LIST)
(defalias '-count #[514 "\300\300\203@!\203T\262\210\211T\262A\262\202\266\211\207" [0] 8 (#$ . 25723)])
#@12 
 
(fn VAL)
(defalias '---truthy\? #[257 "\211??\207" [] 2 (#$ . 25932)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put ---truthy\? pure t side-effect-free] 5)
#@44 Anaphoric form of `-any?'.
 
(fn FORM LIST)
(defalias '--any\? '(macro . #[514 "\300\301ED\207" [---truthy\? --some] 6 (#$ . 26121)]))
(put '--any\? 'edebug-form-spec '(form form))
#@116 Return t if (PRED x) is non-nil for any x in LIST, else nil.
 
Alias: `-any-p', `-some?', `-some-p'
 
(fn PRED LIST)
(defalias '-any\? #[514 "\300\301\302\303\203+\203+@\203\301\262\202!\262\210\211T\262A\262\202\266\211\262!\207" [---truthy\? nil t 0] 10 (#$ . 26310)])
(byte-code "\300\301\302\"\210\300\303\304\"\210\300\305\302\"\210\300\306\304\"\210\300\307\302\"\210\300\310\304\"\207" [defalias -some\? -any\? --some\? --any\? -any-p --any-p -some-p --some-p] 3)
#@44 Anaphoric form of `-all?'.
 
(fn FORM LIST)
(defalias '--all\? '(macro . #[514 "\300\301!\302\303BC\304\305    EF\306DF\207" [make-symbol "all" let (t) --each-while setq ---truthy\?] 11 (#$ . 26808)]))
(put '--all\? 'edebug-form-spec '(form form))
#@118 Return t if (PRED x) is non-nil for all x in LIST, else nil.
 
Alias: `-all-p', `-every?', `-every-p'
 
(fn PRED LIST)
(defalias '-all\? #[514 "\300\300\301\203*\203*@\204\302\262\202!\262\210\211T\262A\262\202\266\303!\207" [t 0 nil ---truthy\?] 9 (#$ . 27066)])
(byte-code "\300\301\302\"\210\300\303\304\"\210\300\305\302\"\210\300\306\304\"\210\300\307\302\"\210\300\310\304\"\207" [defalias -every\? -all\? --every\? --all\? -all-p --all-p -every-p --every-p] 3)
#@45 Anaphoric form of `-none?'.
 
(fn FORM LIST)
(defalias '--none\? '(macro . #[514 "\300\301DE\207" [--all\? not] 5 (#$ . 27561)]))
(put '--none\? 'edebug-form-spec '(form form))
#@92 Return t if (PRED x) is nil for all x in LIST, else nil.
 
Alias: `-none-p'
 
(fn PRED LIST)
(defalias '-none\? #[514 "\300\300\301\203+\203+@\204\302\262\202!?\262\210\211T\262A\262\202\266\303!\207" [t 0 nil ---truthy\?] 9 (#$ . 27745)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -none-p -none\? --none-p --none\?] 3)
#@50 Anaphoric form of `-only-some?'.
 
(fn FORM LIST)
(defalias '--only-some\? '(macro . #[514 "\300\301!\300\302!\303D\304\305\306ED\307    \310    \311BB\310    \312BBFF\313\306EDF\207" [make-symbol "yes" "no" let --each-while not and if setq (t) (t) ---truthy\?] 15 (#$ . 28110)]))
(put '--only-some\? 'edebug-form-spec '(form form))
#@240 Return `t` if at least one item of LIST matches PRED and at least one item of LIST does not match PRED.
Return `nil` both if all items match the predicate or if none of the items match the predicate.
 
Alias: `-only-some-p'
 
(fn PRED LIST)
(defalias '-only-some\? #[514 "\300\211\301\302\2039\2039@\203\203\300\262\202-!\203*\301\262\202-\301\262\210\211T\262A\262\202\266\303\205A!\207" [nil t 0 ---truthy\?] 10 (#$ . 28454)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias -only-some-p -only-some\? --only-some-p --only-some\?] 3)
#@287 Return copy of LIST, starting from index FROM to index TO.
 
FROM or TO may be negative.  These values are then interpreted
modulo the length of the list.
 
If STEP is a number, only each STEPth item in the resulting
section is returned.  Defaults to 1.
 
(fn LIST FROM &optional TO STEP)
(defalias '-slice #[1026 "G\300\206\262\206\301\262\302W\203\303\"\262\302W\203)\303\"\262\304\302\203h\203h@W\204C\300\262\202\\    Y\203\\\303    Z\"\302U\203\\\211B\262\210\211T\262A\262\202,\266\211\237\207" [nil 1 0 mod t] 13 (#$ . 29036)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -slice pure t side-effect-free] 5)
#@126 Return a new list of the first N items in LIST, or all items if there are fewer than N.
 
See also: `-take-last'
 
(fn N LIST)
(defalias '-take #[514 "\300\301\211W\203\203@B\262A\262\211T\262\202\266\211\237\207" [nil 0] 7 (#$ . 29722)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -take pure t side-effect-free] 5)
#@75 Return the last N items of LIST in order.
 
See also: `-take'
 
(fn N LIST)
(defalias '-take-last #[514 "\300\301\"!\207" [copy-sequence last] 6 (#$ . 30085)])
(byte-code "\300\301\302\303#\300\301\304\303#\305\306\307\310#\207" [function-put -take-last pure t side-effect-free defalias -drop nthcdr "Return the tail of LIST without the first N items.\n\nSee also: `-drop-last'\n\n(fn N LIST)"] 6)
#@84 Remove the last N items of LIST and return a copy.
 
See also: `-drop'
 
(fn N LIST)
(defalias '-drop-last #[514 "\300\"\207" [butlast] 5 (#$ . 30489)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -drop-last pure t side-effect-free] 5)
#@50 Anaphoric form of `-take-while'.
 
(fn FORM LIST)
(defalias '--take-while '(macro . #[514 "\300\301!\302C\303\304\305EF\306DF\207" [make-symbol "result" let --each-while !cons it nreverse] 11 (#$ . 30757)]))
(put '--take-while 'edebug-form-spec '(form form))
#@108 Return a new list of successive items from LIST while (PRED item) returns a non-nil value.
 
(fn PRED LIST)
(defalias '-take-while #[514 "\300\301\302\203,\203,@!\204\300\262\202 \211B\262\210\211T\262A\262\202\266\211\237\207" [nil t 0] 9 (#$ . 31029)])
#@50 Anaphoric form of `-drop-while'.
 
(fn FORM LIST)
(defalias '--drop-while '(macro . #[514 "\300\301!\302DC\303\304\302\305\306DDC    EE\307DEF\207" [make-symbol "list" let while and it car !cdr] 12 (#$ . 31310)]))
(put '--drop-while 'edebug-form-spec '(form form))
#@105 Return the tail of LIST starting from the first item for which (PRED item) returns nil.
 
(fn PRED LIST)
(defalias '-drop-while #[514 "\211\211\203\211@!\262\203\211A\262\202\211\207" [] 6 (#$ . 31586)])
#@107 Return a list of ((-take N LIST) (-drop N LIST)), in no more than one pass through the list.
 
(fn N LIST)
(defalias '-split-at #[514 "\300\301\211W\203\203@B\262A\262\211T\262\202\266\211\237D\207" [nil 0] 7 (#$ . 31806)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -split-at pure t side-effect-free] 5)
#@116 Rotate LIST N places to the right.  With N negative, rotate to the left.
The time complexity is O(n).
 
(fn N LIST)
(defalias '-rotate #[514 "\300V\203\301\302\"\303\"\"\207\301\304[\"\305[\"\"\207" [0 append last butlast -drop -take] 7 (#$ . 32161)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -rotate pure t side-effect-free] 5)
#@108 Return a list with X inserted into LIST at position N.
 
See also: `-splice', `-splice-list'
 
(fn N X LIST)
(defalias '-insert-at #[771 "\300\"\211@A@B\244\207" [-split-at] 7 (#$ . 32536)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -insert-at pure t side-effect-free] 5)
#@106 Return a list with element at Nth position in LIST replaced with X.
 
See also: `-replace'
 
(fn N X LIST)
(defalias '-replace-at #[771 "\300\"\211@A@AB\244\207" [-split-at] 7 (#$ . 32845)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -replace-at pure t side-effect-free] 5)
#@130 Return a list with element at Nth position in LIST replaced with `(func (nth n list))`.
 
See also: `-map-when'
 
(fn N FUNC LIST)
(defalias '-update-at #[771 "\300\"\211@A@@!A@AB\244\207" [-split-at] 7 (#$ . 33155)])
#@54 Anaphoric version of `-update-at'.
 
(fn N FORM LIST)
(defalias '--update-at '(macro . #[771 "\300\301\302EF\207" [-update-at lambda (it)] 8 (#$ . 33382)]))
(put '--update-at 'edebug-form-spec '(form form form))
#@117 Return a list with element at Nth position in LIST removed.
 
See also: `-remove-at-indices', `-remove'
 
(fn N LIST)
(defalias '-remove-at #[514 "\300C\"\207" [-remove-at-indices] 5 (#$ . 33603)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -remove-at pure t side-effect-free] 5)
#@175 Return a list whose elements are elements from LIST without
elements selected as `(nth i list)` for all i
from INDICES.
 
See also: `-remove-at', `-remove'
 
(fn INDICES LIST)
(defalias '-remove-at-indices #[514 "\300\301\"\211@\302\303\304\305A#\"B\306\307\2038@\310\"\211@B\262\211A@A\262\266\211T\262A\262\202\266B\262\311\312\237\"\207" [-sort < -map 1- -zip-with - nil 0 -split-at apply -concat] 11 (#$ . 33917)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -remove-at-indices pure t side-effect-free] 5)
#@50 Anaphoric form of `-split-with'.
 
(fn PRED LIST)
(defalias '--split-with '(macro . #[514 "\300\301!\300\302!\300\303!\304D\305B\306BE\307\310E\304\311\312    DDC\313\314\fD\315    \316BB\317\311\fE\320 D\257EE\321\322DEF\207" [make-symbol "list" "result" "continue" let (nil) (t) while and it car if not setq (nil) !cons !cdr list nreverse] 17 (#$ . 34482)]))
(put '--split-with 'edebug-form-spec '(form form))
#@128 Return a list of ((-take-while PRED LIST) (-drop-while PRED LIST)), in no more than one pass through the list.
 
(fn PRED LIST)
(defalias '-split-with #[514 "\211\300\301\203&\211\203&@!\204\300\262\202\"\211B\262A\262\210\202\237D\207" [nil t] 8 (#$ . 34911)])
#@224 Split the LIST each time ITEM is found.
 
Unlike `-partition-by', the ITEM is discarded from the results.
Empty lists are also removed from the result.
 
Comparison is done by `equal'.
 
See also `-split-when'
 
(fn ITEM LIST)
(defalias '-split-on '(macro . #[514 "\300\301\302\303\304EEE\207" [-split-when lambda (it) equal it] 8 (#$ . 35197)]))
(put '-split-on 'edebug-form-spec '(form form))
#@53 Anaphoric version of `-split-when'.
 
(fn FORM LIST)
(defalias '--split-when '(macro . #[514 "\300\301\302EE\207" [-split-when lambda (it)] 6 (#$ . 35597)]))
(put '--split-when 'edebug-form-spec '(form form))
#@269 Split the LIST on each element where FN returns non-nil.
 
Unlike `-partition-by', the "matched" element is discarded from
the results.  Empty lists are also removed from the result.
 
This function can be thought of as a generalization of
`split-string'.
 
(fn FN LIST)
(defalias '-split-when #[514 "\300\211\203*@!\204@B\262\202#\211\203 \211\237B\262\300\262A\262\202\211\2034\211\237B\262\237\207" [nil] 6 (#$ . 35814)])
#@48 Anaphoric form of `-separate'.
 
(fn FORM LIST)
(defalias '--separate '(macro . #[514 "\300\301!\300\302!\303D\304\305\306\307    E\306\307    EFE\310\311D\311DEF\207" [make-symbol "yes" "no" let --each if !cons it list nreverse] 14 (#$ . 36264)]))
(put '--separate 'edebug-form-spec '(form form))
#@107 Return a list of ((-filter PRED LIST) (-remove PRED LIST)), in one pass through the list.
 
(fn PRED LIST)
(defalias '-separate #[514 "\300\211\301\203*@!\203\211B\262\202\211B\262\210\211T\262A\262\202\266\237\237D\207" [nil 0] 9 (#$ . 36573)])
#@85 Private: Used by -partition-all-in-steps and -partition-in-steps.
 
(fn N STEP LIST)
(defalias '---partition-all-in-steps-reversed #[771 "\300W\203\n\301\302!\210\303\203 \304\"B\262\305\"\262\202 \211\207" [1 error "Step must be a positive number, or you're looking at some juicy infinite loops." nil -take -drop] 7 (#$ . 36847)])
#@160 Return a new list with the items in LIST grouped into N-sized sublists at offsets STEP apart.
The last groups may contain less than N items.
 
(fn N STEP LIST)
(defalias '-partition-all-in-steps #[771 "\300#\237\207" [---partition-all-in-steps-reversed] 7 (#$ . 37197)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -partition-all-in-steps pure t side-effect-free] 5)
#@202 Return a new list with the items in LIST grouped into N-sized sublists at offsets STEP apart.
If there are not enough items to make the last group N-sized,
those items are discarded.
 
(fn N STEP LIST)
(defalias '-partition-in-steps #[771 "\300#\211\203\211@GW\203\211A\262\202\211\237\207" [---partition-all-in-steps-reversed] 7 (#$ . 37599)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -partition-in-steps pure t side-effect-free] 5)
#@132 Return a new list with the items in LIST grouped into N-sized sublists.
The last group may contain less than N items.
 
(fn N LIST)
(defalias '-partition-all #[514 "\300\211#\207" [-partition-all-in-steps] 6 (#$ . 38079)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -partition-all pure t side-effect-free] 5)
#@175 Return a new list with the items in LIST grouped into N-sized sublists.
If there are not enough items to make the last group N-sized,
those items are discarded.
 
(fn N LIST)
(defalias '-partition #[514 "\300\211#\207" [-partition-in-steps] 6 (#$ . 38423)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -partition pure t side-effect-free] 5)
#@52 Anaphoric form of `-partition-by'.
 
(fn FORM LIST)
(defalias '--partition-by '(macro . #[514 "\300\301!\300\302!\300\303!\300\304!\300\305!\306DC\307\310    \311B\312\313DD\n\314B\nD    \315 DD\257\316\310\312\313 DD DD\317\320E\321\322DE\323\324BB\323E\257\321\312E\325 D\257E\321\322\fD E\322 D\257EE\207" [make-symbol "result" "sublist" "value" "new-value" "list" let when let* (nil) it car ((list it)) cdr while unless equal !cons nreverse setq (nil) !cdr] 24 (#$ . 38797)]))
(put '--partition-by 'edebug-form-spec '(form form))
#@93 Apply FN to each item in LIST, splitting it each time FN returns a new value.
 
(fn FN LIST)
(defalias '-partition-by #[514 "\211\211\205B\300@\211C!A\211\2038\211@!\232\204,\237B\262\300\262\211\262B\262A\266\203\202\237B\262\237\266\205\207" [nil] 12 (#$ . 39373)])
#@59 Anaphoric form of `-partition-by-header'.
 
(fn FORM LIST)
(defalias '--partition-by-header '(macro . #[514 "\300\301!\300\302!\300\303!\300\304!\300\305!\300\306!\307DC\310\311\n\312B\313\314DD \315B D \316B\n\317\fDD\257\320\311\313\314 DD DD\321\322E\310\323\324DE\325\326BB\325\327BB\257\325\330BBF\323\313E\331 D\257E\323\324 DE\324D\257EE\207" [make-symbol "result" "sublist" "header-value" "seen-body?" "new-value" "list" let when let* (nil) it car ((list it)) (nil) cdr while if equal !cons nreverse setq (nil) (nil) (t) !cdr] 27 (#$ . 39674)]))
(put '--partition-by-header 'edebug-form-spec '(form form))
#@219 Apply FN to the first item in LIST. That is the header
value. Apply FN to each item in LIST, splitting it each time FN
returns the header value, but only after seeing at least one
other value (the body).
 
(fn FN LIST)
(defalias '-partition-by-header #[514 "\211\211\205O\300@\211C!\300A\211\203D\211@    !\232\2034\2037\237B\262\300\262\300\262\2027\301\262B\262A\266\203\202\237B\262\237\266\206\207" [nil t] 13 (#$ . 40342)])
#@88 Partition directly after each time PRED is true on an element of LIST.
 
(fn PRED LIST)
(defalias '-partition-after-pred #[514 "\211\205\"\300A\"@!\203@CB\202 @@BAB\262\207" [-partition-after-pred] 5 (#$ . 40806)])
#@89 Partition directly before each time PRED is true on an element of LIST.
 
(fn PRED LIST)
(defalias '-partition-before-pred #[514 "\300\301\302\301!\"\"\237\207" [-map reverse -partition-after-pred] 8 (#$ . 41040)])
#@74 Partition directly after each time ITEM appears in LIST.
 
(fn ITEM LIST)
(defalias '-partition-after-item #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [-partition-after-pred make-byte-code 257 "\211\300\232\207" vconcat vector [] 3 "\n\n(fn ELE)"] 9 (#$ . 41262)])
#@75 Partition directly before each time ITEM appears in LIST.
 
(fn ITEM LIST)
(defalias '-partition-before-item #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [-partition-before-pred make-byte-code 257 "\211\300\232\207" vconcat vector [] 3 "\n\n(fn ELE)"] 9 (#$ . 41546)])
#@48 Anaphoric form of `-group-by'.
 
(fn FORM LIST)
(defalias '--group-by '(macro . #[514 "\300\301!\300\302!\300\303!\304\305\306C\307\310D\304\311\nDDEE\312\313\nD\314    \315BBDD\316\317    \307\320\311 DEE\321\322\f\323BB\324BBF\325BBB\326    FED\207" [make-symbol "n" "k" "grp" nreverse -map lambda cons car cdr --reduce-from let* assoc (acc) if setcdr it push list (it) (acc) (acc) nil] 19 (#$ . 41833)]))
(put '--group-by 'edebug-form-spec t)
#@125 Separate LIST into an alist whose keys are FN applied to the
elements of LIST.  Keys are compared by `equal'.
 
(fn FN LIST)
(defalias '-group-by #[514 "\300\301\302\303\203;@!\304\"\211\203\"\211AB\241\210\202*DB\262\266\202\262\210\211T\262A\262\202\266\211\262\"\237\207" [-map #[257 "\211@A\237B\207" [] 3 "\n\n(fn N)"] nil 0 assoc] 13 (#$ . 42292)])
#@76 Return a new list of all elements in LIST separated by SEP.
 
(fn SEP LIST)
(defalias '-interpose #[514 "\300\203@B\262A\262\203\"@BB\262A\262\202\211\237\207" [nil] 6 (#$ . 42681)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -interpose pure t side-effect-free] 5)
#@90 Return a new list of the first item in each list, then the second etc.
 
(fn &rest LISTS)
(defalias '-interleave #[128 "\211\2055\300\301\302\"\2031\303\203&@\211@B\262\210\211T\262A\262\202\266\304\305\"\262\202\211\237\262\207" [nil -none\? null 0 -map cdr] 7 (#$ . 42996)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -interleave pure t side-effect-free] 5)
#@145 Anaphoric form of `-zip-with'.
 
The elements in list1 are bound as symbol `it', the elements in list2 as symbol `other'.
 
(fn FORM LIST1 LIST2)
(defalias '--zip-with '(macro . #[771 "\300\301!\300\302!\300\303!\304\305BDDE\306\307E\304\310\311DD\312\311DDD\313\f\nE\314    D\314    D\257E\315DF\207" [make-symbol "result" "list1" "list2" let (nil) while and it car other !cons !cdr nreverse] 16 (#$ . 43409)]))
(put '--zip-with 'edebug-form-spec '(form form form))
#@347 Zip the two lists LIST1 and LIST2 using a function FN.  This
function is applied pairwise taking as first argument element of
LIST1 and as second argument element of LIST2 at corresponding
position.
 
The anaphoric form `--zip-with' binds the elements from LIST1 as symbol `it',
and the elements from LIST2 as symbol `other'.
 
(fn FN LIST1 LIST2)
(defalias '-zip-with #[771 "\300\203#\211\203#@@\"B\262A\262A\266\203\202\237\207" [nil] 11 (#$ . 43895)])
#@492 Zip LISTS together.  Group the head of each list, followed by the
second elements of each list, and so on. The lengths of the returned
groupings are equal to the length of the shortest input list.
 
If two lists are provided as arguments, return the groupings as a list
of cons cells. Otherwise, return the groupings as a list of lists.
 
Please note! This distinction is being removed in an upcoming 3.0
release of Dash. If you rely on this behavior, use -zip-pair instead.
 
(fn &rest LISTS)
(defalias '-zip #[128 "\211\2052\300\301\302\"\203\303\304\"B\262\303\305\"\262\202\211\237\262G\306U\203/\303\307\"\2020\211\262\207" [nil -none\? null mapcar car cdr 2 #[257 "\211@A@B\207" [] 3 "\n\n(fn IT)"]] 5 (#$ . 44374)])
(byte-code "\300\301\302\303#\300\301\304\303#\305\306\301\"\207" [function-put -zip pure t side-effect-free defalias -zip-pair] 5)
#@177 Zip LISTS, with FILL-VALUE padded onto the shorter lists. The
lengths of the returned groupings are equal to the length of the
longest input list.
 
(fn FILL-VALUE &rest LISTS)
(defalias '-zip-fill #[385 "\300\301\300\302B\"\"\207" [apply -zip -pad] 8 (#$ . 45251)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -zip-fill pure t side-effect-free] 5)
#@241 Unzip LISTS.
 
This works just like `-zip' but takes a list of lists instead of
a variable number of arguments, such that
 
  (-unzip (-zip L1 L2 L3 ...))
 
is identity (given that the lists are the same length).
 
See also: `-zip'
 
(fn LISTS)
(defalias '-unzip #[257 "\300\301\"\207" [apply -zip] 4 (#$ . 45634)])
#@112 Return an infinite copy of LIST that will cycle through the
elements and repeat from the beginning.
 
(fn LIST)
(defalias '-cycle #[257 "\300\301\"\211\244\207" [-map identity] 4 (#$ . 45953)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -cycle pure t side-effect-free] 5)
#@128 Appends FILL-VALUE to the end of each list in LISTS such that they
will all have the same length.
 
(fn FILL-VALUE &rest LISTS)
(defalias '-pad #[385 "\300\301\"\302\303\304\"!\305\306\307\310\311\312    \"\313\"\314\315%\"\207" [-annotate length -max -map car mapcar make-byte-code 257 "\302A\303\301@Z\300\"\"\207" vconcat vector [append -repeat] 6 "\n\n(fn IT)"] 12 (#$ . 46260)])
#@141 Return a list of cons cells where each cell is FN applied to each
element of LIST paired with the unmodified element of LIST.
 
(fn FN LIST)
(defalias '-annotate #[514 "\300\301\"\"\207" [-zip -map] 6 (#$ . 46655)])
#@51 Anaphoric version of `-annotate'.
 
(fn FORM LIST)
(defalias '--annotate '(macro . #[514 "\300\301\302EE\207" [-annotate lambda (it)] 6 (#$ . 46879)]))
(put '--annotate 'edebug-form-spec '(form form))
#@140 Helper for `-table' and `-table-flat'.
 
If a list overflows, carry to the right and reset the list.
 
(fn LISTS RESTORE-LISTS &optional RE)
(defalias 'dash--table-carry #[770 "@\206\300\232?\205C@\240\210\211A@\211AA\240\210\266A\262A\262\211\203\211@\237\211AA@B\240\266\211\301\240\210\211A\262\202\207" [(nil) nil] 8 (#$ . 47088)])
#@352 Compute outer product of LISTS using function FN.
 
The function FN should have the same arity as the number of
supplied lists.
 
The outer product is computed by applying fn to all possible
combinations created by taking one element from each list in
order.  The dimension of the result is (length lists).
 
See also: `-table-flat'
 
(fn FN &rest LISTS)
(defalias '-table #[385 "\300!\301!\302G\303\"@\2031\304\305\306\"\"\211@B\240\266\211@A\240\210\307#\266\202 \301!@\237\207" [copy-sequence last make-list nil apply -map car dash--table-carry] 10 (#$ . 47453)])
#@539 Compute flat outer product of LISTS using function FN.
 
The function FN should have the same arity as the number of
supplied lists.
 
The outer product is computed by applying fn to all possible
combinations created by taking one element from each list in
order.  The results are flattened, ignoring the tensor structure
of the result.  This is equivalent to calling:
 
  (-flatten-n (1- (length lists)) (apply \='-table fn lists))
 
but the implementation here is much more efficient.
 
See also: `-flatten-n', `-table'
 
(fn FN &rest LISTS)
(defalias '-table-flat #[385 "\300!\301!\302@\203(\303\304\305\"\"\211B\262\211@A\240\210\306\"\266\202\211\237\207" [copy-sequence last nil apply -map car dash--table-carry] 10 (#$ . 48042)])
#@234 Take a function FN and fewer than the normal arguments to FN,
and return a fn that takes a variable number of additional ARGS.
When called, the returned function calls FN with ARGS first and
then additional args.
 
(fn FN &rest ARGS)
(defalias '-partial #[385 "\300\301#\207" [apply apply-partially] 6 (#$ . 48795)])
#@151 Return the index of the first element in the given LIST which
is equal to the query element ELEM, or nil if there is no
such element.
 
(fn ELEM LIST)
(defalias '-elem-index #[514 "\300\"@\207" [-elem-indices] 5 (#$ . 49120)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -elem-index pure t side-effect-free] 5)
#@113 Return the indices of all elements in LIST equal to the query
element ELEM, in ascending order.
 
(fn ELEM LIST)
(defalias '-elem-indices #[514 "\300\301\302\"\"\207" [-find-indices -partial equal] 6 (#$ . 49465)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -elem-indices pure t side-effect-free] 5)
#@111 Return the indices of all elements in LIST satisfying the
predicate PRED, in ascending order.
 
(fn PRED LIST)
(defalias '-find-indices #[514 "\300\301\302\303\203$@!\205CB\262\210\211T\262A\262\202\266\211\237\262\"\207" [apply append nil 0] 10 (#$ . 49800)])
#@55 Anaphoric version of `-find-indices'.
 
(fn FORM LIST)
(defalias '--find-indices '(macro . #[514 "\300\301\302EE\207" [-find-indices lambda (it)] 6 (#$ . 50085)]))
(put '--find-indices 'edebug-form-spec '(form form))
#@186 Take a predicate PRED and a LIST and return the index of the
first element in the list satisfying the predicate, or nil if
there is no such element.
 
See also `-first'.
 
(fn PRED LIST)
(defalias '-find-index #[514 "\300\"@\207" [-find-indices] 5 (#$ . 50310)])
#@53 Anaphoric version of `-find-index'.
 
(fn FORM LIST)
(defalias '--find-index '(macro . #[514 "\300\301\302EE\207" [-find-index lambda (it)] 6 (#$ . 50579)]))
(put '--find-index 'edebug-form-spec '(form form))
#@184 Take a predicate PRED and a LIST and return the index of the
last element in the list satisfying the predicate, or nil if
there is no such element.
 
See also `-last'.
 
(fn PRED LIST)
(defalias '-find-last-index #[514 "\300\301\"!\207" [-last-item -find-indices] 6 (#$ . 50796)])
#@58 Anaphoric version of `-find-last-index'.
 
(fn FORM LIST)
(defalias '--find-last-index '(macro . #[514 "\300\301\302EE\207" [-find-last-index lambda (it)] 6 (#$ . 51083)]))
#@123 Return a list whose elements are elements from LIST selected
as `(nth i list)` for all i from INDICES.
 
(fn INDICES LIST)
(defalias '-select-by-indices #[514 "\300\301\203@\2118B\262\210\211T\262A\262\202\266\211\237\207" [nil 0] 8 (#$ . 51264)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -select-by-indices pure t side-effect-free] 5)
#@283 Select COLUMNS from TABLE.
 
TABLE is a list of lists where each element represents one row.
It is assumed each row has the same length.
 
Each row is transformed such that only the specified COLUMNS are
selected.
 
See also: `-select-column', `-select-by-indices'
 
(fn COLUMNS TABLE)
(defalias '-select-columns #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [mapcar make-byte-code 257 "\301\300\"\207" vconcat vector [-select-by-indices] 4 "\n\n(fn IT)"] 9 (#$ . 51649)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -select-columns pure t side-effect-free] 5)
#@257 Select COLUMN from TABLE.
 
TABLE is a list of lists where each element represents one row.
It is assumed each row has the same length.
 
The single selected column is returned as a list.
 
See also: `-select-columns', `-select-by-indices'
 
(fn COLUMN TABLE)
(defalias '-select-column #[514 "\300\301\302\303\304\305\306\307    !\310\"\311\312%\"\"\207" [apply append mapcar make-byte-code 257 "\301\300C\"\207" vconcat vector [-select-by-indices] 4 "\n\n(fn IT)"] 11 (#$ . 52252)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -select-column pure t side-effect-free] 5)
#@253 Thread the expr through the forms. Insert X as the second item
in the first form, making a list of it if it is not a list
already. If there are more forms, insert the first form as the
second item in second form, etc.
 
(fn X &optional FORM &rest MORE)
(defalias '-> '(macro . #[641 "\204\207\211\204<\203@ABB\207D\207\300\211EBB\207" [->] 7 (#$ . 52852)]))
(put '-> 'edebug-form-spec '(form &rest [&or symbolp (sexp &rest form)]))
#@249 Thread the expr through the forms. Insert X as the last item
in the first form, making a list of it if it is not a list
already. If there are more forms, insert the first form as the
last item in second form, etc.
 
(fn X &optional FORM &rest MORE)
(defalias '->> '(macro . #[641 "\204\207\211\204<\203\300C\"\207D\207\301\211EBB\207" [append ->>] 7 (#$ . 53307)]))
(put '->> 'edebug-form-spec '->)
#@269 Starting with the value of X, thread each expression through FORMS.
 
Insert X at the position signified by the symbol `it' in the first
form.  If there are more forms, insert the first form at the position
signified by `it' in in second form, etc.
 
(fn X &rest FORMS)
(defalias '--> '(macro . #[385 "\300\301BBB\207" [-as-> it] 6 (#$ . 53728)]))
(put '--> 'edebug-form-spec '(form body))
#@212 Starting with VALUE, thread VARIABLE through FORMS.
 
In the first form, bind VARIABLE to VALUE.  In the second form, bind
VARIABLE to the result of the first form, and so forth.
 
(fn VALUE VARIABLE &rest FORMS)
(defalias '-as-> '(macro . #[642 "\211\204\207\300DC\301@9\203@D\202@ABBBE\207" [let -as->] 9 (#$ . 54125)]))
(put '-as-> 'edebug-form-spec '(form symbolp body))
#@163 When expr is non-nil, thread it through the first form (via `->'),
and when that result is non-nil, through the next form, etc.
 
(fn X &optional FORM &rest MORE)
(defalias '-some-> '(macro . #[641 "\204\207\300\301!\302\303D\304EEBB\207" [make-symbol "result" -some-> -when-let ->] 10 (#$ . 54520)]))
(put '-some-> 'edebug-form-spec '->)
#@164 When expr is non-nil, thread it through the first form (via `->>'),
and when that result is non-nil, through the next form, etc.
 
(fn X &optional FORM &rest MORE)
(defalias '-some->> '(macro . #[641 "\204\207\300\301!\302\303D\304EEBB\207" [make-symbol "result" -some->> -when-let ->>] 10 (#$ . 54876)]))
(put '-some->> 'edebug-form-spec '->)
#@164 When expr in non-nil, thread it through the first form (via `-->'),
and when that result is non-nil, through the next form, etc.
 
(fn X &optional FORM &rest MORE)
(defalias '-some--> '(macro . #[641 "\204\207\300\301!\302\303D\304EEBB\207" [make-symbol "result" -some--> -when-let -->] 10 (#$ . 55237)]))
(put '-some--> 'edebug-form-spec '->)
#@176 Grade elements of LIST using COMPARATOR relation, yielding a
permutation vector such that applying this permutation to LIST
sorts it in ascending order.
 
(fn COMPARATOR LIST)
(defalias '-grade-up #[514 "\300\301\302\303D\304BBE\305\306\307\310\311\203+@\211BB\262\210\211T\262A\262\202\266\211\237\262\"\"\207" [lambda (it other) funcall quote ((car it) (car other)) -map cdr -sort nil 0] 13 (#$ . 55598)])
#@177 Grade elements of LIST using COMPARATOR relation, yielding a
permutation vector such that applying this permutation to LIST
sorts it in descending order.
 
(fn COMPARATOR LIST)
(defalias '-grade-down #[514 "\300\301\302\303D\304BBE\305\306\307\310\311\203+@\211BB\262\210\211T\262A\262\202\266\211\237\262\"\"\207" [lambda (it other) funcall quote ((car other) (car it)) -map cdr -sort nil 0] 13 (#$ . 56029)])
#@42 Monotonic counter for generated symbols.
(defvar dash--source-counter 0 (#$ . 56462))
#@87 Generate a new dash-source symbol.
 
All returned symbols are guaranteed to be unique.
(defalias 'dash--match-make-source-symbol #[0 "\301\302\303\"!T\207" [dash--source-counter make-symbol format "--dash-source-%d--"] 4 (#$ . 56554)])
#@70 Return non-nil if SYMBOL is a symbol and starts with _.
 
(fn SYMBOL)
(defalias 'dash--match-ignore-place-p #[257 "\2119\205\f\300!\301H\302=\207" [symbol-name 0 95] 3 (#$ . 56798)])
#@75 Helper function generating idiomatic shifting code.
 
(fn SKIP-CDR SOURCE)
(defalias 'dash--match-cons-skip-cdr #[514 "\300U\203\n\301D\207\302\303\"\304\305T\"EE\207" [0 pop prog1 dash--match-cons-get-car setq dash--match-cons-get-cdr] 9 (#$ . 56988)])
#@81 Helper function generating idiomatic code to get nth car.
 
(fn SKIP-CDR SOURCE)
(defalias 'dash--match-cons-get-car #[514 "\300U\203\n\301D\207\302U\203\303D\207\304E\207" [0 car 1 cadr nth] 5 (#$ . 57257)])
#@81 Helper function generating idiomatic code to get nth cdr.
 
(fn SKIP-CDR SOURCE)
(defalias 'dash--match-cons-get-cdr #[514 "\300U\203\207\301U\203\302D\207\303E\207" [0 1 cdr nthcdr] 5 (#$ . 57480)])
#@86 Setup a cons matching environment and call the real matcher.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match-cons #[514 "\300 \301\211:\203\302@!\203T\262\211A\262\202\211:\2031\211A\2041\303@\304\"\"\202K\301V\203B\303\305\"\"\202KD\306\"B\207" [dash--match-make-source-symbol 0 dash--match-ignore-place-p dash--match dash--match-cons-get-car dash--match-cons-get-cdr dash--match-cons-1] 10 (#$ . 57694)])
#@386 Match MATCH-FORM against SOURCE.
 
MATCH-FORM is a proper or improper list.  Each element of
MATCH-FORM is either a symbol, which gets bound to the respective
value in source or another match form which gets destructured
recursively.
 
If the cdr of last cons cell in the list is `nil', matching stops
there.
 
SOURCE is a proper or improper list.
 
(fn MATCH-FORM SOURCE &optional PROPS)
(defalias 'dash--match-cons-1 #[770 "\300\301\"\206\302:\203cA\203W@9\203,@\303>\203,\304\305!\306\"\"\202u\307@!\203B\310A\311\301T##\202u\312\313@\314\"\"\310A\"\"\202u\313@\315\"\"\202u\316=\203m\316\202u\313\306\"\"\207" [plist-get :skip-cdr 0 (&keys &plist &alist &hash) dash--match-kv dash--match-kv-normalize-match-form dash--match-cons-get-cdr dash--match-ignore-place-p dash--match-cons-1 plist-put -concat dash--match dash--match-cons-skip-cdr dash--match-cons-get-car nil] 11 (#$ . 58137)])
#@59 Return the tail of SEQ starting at START.
 
(fn SEQ START)
(defalias 'dash--vector-tail #[514 "\300!\203+GZ\301\302\"\302\211W\203(\\HI\210\211T\262\202\266\207;\2054\303O\207" [vectorp make-vector 0 nil] 11 (#$ . 59075)])
#@88 Setup a vector matching environment and call the real matcher.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match-vector #[514 "\300 G\301U\203\302\303H\304\305BB\"\202Q9\203\"\306\"\202Q\307\310\"\311\312\"G\211GSU\205D\313\312\"\302H\304E\"\262\266\202\206Q\211D\306\"B\207" [dash--match-make-source-symbol 1 dash--match 0 aref (0) dash--match-vector-1 mapcar dash--match-ignore-place-p -remove null -find-index] 11 (#$ . 59326)])
#@691 Match MATCH-FORM against SOURCE.
 
MATCH-FORM is a vector.  Each element of MATCH-FORM is either a
symbol, which gets bound to the respective value in source or
another match form which gets destructured recursively.
 
If second-from-last place in MATCH-FORM is the symbol &rest, the
next element of the MATCH-FORM is matched against the tail of
SOURCE, starting at index of the &rest symbol.  This is
conceptually the same as the (head . tail) match for improper
lists, where dot plays the role of &rest.
 
SOURCE is a vector.
 
If the MATCH-FORM vector is shorter than SOURCE vector, only
the (length MATCH-FORM) places are bound, the rest of the SOURCE
is discarded.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match-vector-1 #[514 "\300G\301W\203aH\2119\203+\211\302=\203+\303TH\304E\"\262\202U\2119\203F\305!\300H\306=\204F\211\307EDC\202U\2119?\205U\303\307E\"B\262T\262\210\202\310\311\237\"\207" [0 nil &rest dash--match dash--vector-tail symbol-name 95 aref -flatten-n 1] 11 (#$ . 59789)])
#@148 Normalize kv PATTERN.
 
This method normalizes PATTERN to the format expected by
`dash--match-kv'.  See `-let' for the specification.
 
(fn PATTERN)
(defalias 'dash--match-kv-normalize-match-form #[257 "\211@CC\300C\301\302!\303\304\305\306A    AA#\"\307\310\311\312\313            #\314\"\315\316%\"\210\242\237\207" [nil make-symbol "--dash-fill-placeholder--" -each apply -zip -pad make-byte-code 257 "\211@A\301\242\203\301\303\240\202\260\302=\204>\2119\203,\304!\204,\211\305=\204,\211\303=\203\237\211:\2038\211@\306=\203\237\307!\204\237\304!\203\\\300\300\242B\240\210\300\310\311!\312\303O!\300\242B\240\210\202\231;\203t\300\300\242B\240\210\300\310!\300\242B\240\210\202\231:\203\223@\306=\203\223\300\300\242B\240\210\300A@\300\242B\240\210\202\231\313\314#\210\301\303\240\202\260\300\300\242B\240\210\300\300\242B\240\210\301\305\240\207" vconcat vector [nil keywordp t quote vectorp intern symbol-name 1 error "-let: found key `%s' in kv destructuring but its pattern `%s' is invalid and can not be derived from the key"] 8 "\n\n(fn PAIR)"] 14 (#$ . 60827)])
#@152 Setup a kv matching environment and call the real matcher.
 
kv can be any key-value store, such as plist, alist or hash-table.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match-kv #[514 "\300 G\301U\203\302A@#\202.9\203\"\302A@#\202.\211D\302A@#B\207" [dash--match-make-source-symbol 3 dash--match-kv-1] 8 (#$ . 61940)])
#@509 Match MATCH-FORM against SOURCE of type TYPE.
 
MATCH-FORM is a proper list of the form (key1 place1 ... keyN
placeN).  Each placeK is either a symbol, which gets bound to the
value of keyK retrieved from the key-value store, or another
match form which gets destructured recursively.
 
SOURCE is a key-value store of type TYPE, which can be a plist,
an alist or a hash table.
 
TYPE is a token specifying the type of the key-value store.
Valid values are &plist, &alist and &hash.
 
(fn MATCH-FORM SOURCE TYPE)
(defalias 'dash--match-kv-1 #[771 "\300\301\302\303\304\305\306\307        \"\310\"\311\312%\313\314\"\"\"\207" [-flatten-n 1 -map make-byte-code 257 "\211@A@\301\302=\204\301\303=\203\304\300E\2021\301\305=\203'\306\307\300ED\2021\301\310=\2051\311\300E9\203=DC\202A\312\"\207" vconcat vector [&plist &keys plist-get &alist cdr assoc &hash gethash dash--match] 7 "\n\n(fn KV)" -partition 2] 13 (#$ . 62283)])
#@96 Bind a symbol.
 
This works just like `let', there is no destructuring.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match-symbol #[514 "DC\207" [] 4 (#$ . 63224)])
#@281 Match MATCH-FORM against SOURCE.
 
This function tests the MATCH-FORM and dispatches to specific
matchers based on the type of the expression.
 
Key-value stores are disambiguated by placing a token &plist,
&alist or &hash as a first item in the MATCH-FORM.
 
(fn MATCH-FORM SOURCE)
(defalias 'dash--match #[514 "9\203\n\300\"\207:\203CA:\2030@9\2030A@\301=\2030@\211D\302AA\"B\207@\303>\203>\304\305!\"\207\306\"\207\307!\205rG\310V\203n\311H9\203n\312H\301=\203n\311H\211D\302\313\310\"\"B\207\314\"\207" [dash--match-symbol &as dash--match (&keys &plist &alist &hash) dash--match-kv dash--match-kv-normalize-match-form dash--match-cons vectorp 2 0 1 dash--vector-tail dash--match-vector] 8 (#$ . 63393)])
#@364 Normalize VARLIST so that every binding is a list.
 
`let' allows specifying a binding which is not a list but simply
the place which is then automatically bound to nil, such that all
three of the following are identical and evaluate to nil.
 
  (let (a) a)
  (let ((a)) a)
  (let ((a nil)) a)
 
This function normalizes all of these to the last form.
 
(fn VARLIST)
(defalias 'dash--normalize-let-varlist #[257 "\300\301\"\207" [mapcar #[257 "\211:\203\207\211\300D\207" [nil] 3 "\n\n(fn IT)"]] 4 (#$ . 64141)])
#@476 Bind variables according to VARLIST then eval BODY.
 
VARLIST is a list of lists of the form (PATTERN SOURCE).  Each
PATTERN is matched against the SOURCE structurally.  SOURCE is
only evaluated once for each PATTERN.
 
Each SOURCE can refer to the symbols already bound by this
VARLIST.  This is useful if you want to destructure SOURCE
recursively but also want to name the intermediate structures.
 
See `-let' for the list of all possible patterns.
 
(fn VARLIST &rest BODY)
(defalias '-let* '(macro . #[385 "\300!\301\302\303\304\"\"\305BB\207" [dash--normalize-let-varlist apply append mapcar #[257 "\300@A@\"\207" [dash--match] 4 "\n\n(fn IT)"] let*] 8 (#$ . 64660)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -let* edebug-form-spec ((&rest [&or (sexp form) sexp]) body) function-put lisp-indent-function 1] 4)
#@5684 Bind variables according to VARLIST then eval BODY.
 
VARLIST is a list of lists of the form (PATTERN SOURCE).  Each
PATTERN is matched against the SOURCE "structurally".  SOURCE
is only evaluated once for each PATTERN.  Each PATTERN is matched
recursively, and can therefore contain sub-patterns which are
matched against corresponding sub-expressions of SOURCE.
 
All the SOURCEs are evalled before any symbols are
bound (i.e. "in parallel").
 
If VARLIST only contains one (PATTERN SOURCE) element, you can
optionally specify it using a vector and discarding the
outer-most parens.  Thus
 
  (-let ((PATTERN SOURCE)) ..)
 
becomes
 
  (-let [PATTERN SOURCE] ..).
 
`-let' uses a convention of not binding places (symbols) starting
with _ whenever it's possible.  You can use this to skip over
entries you don't care about.  However, this is not *always*
possible (as a result of implementation) and these symbols might
get bound to undefined values.
 
Following is the overview of supported patterns.  Remember that
patterns can be matched recursively, so every a, b, aK in the
following can be a matching construct and not necessarily a
symbol/variable.
 
Symbol:
 
  a - bind the SOURCE to A.  This is just like regular `let'.
 
Conses and lists:
 
  (a) - bind `car' of cons/list to A
 
  (a . b) - bind car of cons to A and `cdr' to B
 
  (a b) - bind car of list to A and `cadr' to B
 
  (a1 a2 a3  ...) - bind 0th car of list to A1, 1st to A2, 2nd to A3 ...
 
  (a1 a2 a3 ... aN . rest) - as above, but bind the Nth cdr to REST.
 
Vectors:
 
  [a] - bind 0th element of a non-list sequence to A (works with
        vectors, strings, bit arrays...)
 
  [a1 a2 a3 ...] - bind 0th element of non-list sequence to A0, 1st to
                   A1, 2nd to A2, ...
                   If the PATTERN is shorter than SOURCE, the values at
                   places not in PATTERN are ignored.
                   If the PATTERN is longer than SOURCE, an `error' is
                   thrown.
 
  [a1 a2 a3 ... &rest rest] - as above, but bind the rest of
                              the sequence to REST.  This is
                              conceptually the same as improper list
                              matching (a1 a2 ... aN . rest)
 
Key/value stores:
 
  (&plist key0 a0 ... keyN aN) - bind value mapped by keyK in the
                                 SOURCE plist to aK.  If the
                                 value is not found, aK is nil.
                                 Uses `plist-get' to fetch values.
 
  (&alist key0 a0 ... keyN aN) - bind value mapped by keyK in the
                                 SOURCE alist to aK.  If the
                                 value is not found, aK is nil.
                                 Uses `assoc' to fetch values.
 
  (&hash key0 a0 ... keyN aN) - bind value mapped by keyK in the
                                SOURCE hash table to aK.  If the
                                value is not found, aK is nil.
                                Uses `gethash' to fetch values.
 
Further, special keyword &keys supports "inline" matching of
plist-like key-value pairs, similarly to &keys keyword of
`cl-defun'.
 
  (a1 a2 ... aN &keys key1 b1 ... keyN bK)
 
This binds N values from the list to a1 ... aN, then interprets
the cdr as a plist (see key/value matching above).
 
A shorthand notation for kv-destructuring exists which allows the
patterns be optionally left out and derived from the key name in
the following fashion:
 
- a key :foo is converted into `foo' pattern,
- a key 'bar is converted into `bar' pattern,
- a key "baz" is converted into `baz' pattern.
 
That is, the entire value under the key is bound to the derived
variable without any further destructuring.
 
This is possible only when the form following the key is not a
valid pattern (i.e. not a symbol, a cons cell or a vector).
Otherwise the matching proceeds as usual and in case of an
invalid spec fails with an error.
 
Thus the patterns are normalized as follows:
 
   ;; derive all the missing patterns
   (&plist :foo 'bar "baz") => (&plist :foo foo 'bar bar "baz" baz)
 
   ;; we can specify some but not others
   (&plist :foo 'bar explicit-bar) => (&plist :foo foo 'bar explicit-bar)
 
   ;; nothing happens, we store :foo in x
   (&plist :foo x) => (&plist :foo x)
 
   ;; nothing happens, we match recursively
   (&plist :foo (a b c)) => (&plist :foo (a b c))
 
You can name the source using the syntax SYMBOL &as PATTERN.
This syntax works with lists (proper or improper), vectors and
all types of maps.
 
  (list &as a b c) (list 1 2 3)
 
binds A to 1, B to 2, C to 3 and LIST to (1 2 3).
 
Similarly:
 
  (bounds &as beg . end) (cons 1 2)
 
binds BEG to 1, END to 2 and BOUNDS to (1 . 2).
 
  (items &as first . rest) (list 1 2 3)
 
binds FIRST to 1, REST to (2 3) and ITEMS to (1 2 3)
 
  [vect &as _ b c] [1 2 3]
 
binds B to 2, C to 3 and VECT to [1 2 3] (_ avoids binding as usual).
 
  (plist &as &plist :b b) (list :a 1 :b 2 :c 3)
 
binds B to 2 and PLIST to (:a 1 :b 2 :c 3).  Same for &alist and &hash.
 
This is especially useful when we want to capture the result of a
computation and destructure at the same time.  Consider the
form (function-returning-complex-structure) returning a list of
two vectors with two items each.  We want to capture this entire
result and pass it to another computation, but at the same time
we want to get the second item from each vector.  We can achieve
it with pattern
 
  (result &as [_ a] [_ b]) (function-returning-complex-structure)
 
Note: Clojure programmers may know this feature as the ":as
binding".  The difference is that we put the &as at the front
because we need to support improper list binding.
 
(fn VARLIST &rest BODY)
(defalias '-let '(macro . #[385 "\300!\203\301\302\303H\304H\"BB\207\305!\306\303\2039@\307\310\311\"!A@DB\262\210\211T\262A\262\202\266\211\237\262\312\313\314\"\"\315\316BBE\207" [vectorp let* dash--match 0 1 dash--normalize-let-varlist nil make-symbol format "input%d" mapcar #[257 "\211@@A@D\207" [] 3 "\n\n(fn IT)"] -zip let -let*] 11 (#$ . 65512)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -let edebug-form-spec ([&or (&rest [&or (sexp form) sexp]) (vector [&rest [sexp form]])] body) function-put lisp-indent-function 1] 4)
#@423 Return a lambda which destructures its input as MATCH-FORM and executes BODY.
 
Note that you have to enclose the MATCH-FORM in a pair of parens,
such that:
 
  (-lambda (x) body)
  (-lambda (x y ...) body)
 
has the usual semantics of `lambda'.  Furthermore, these get
translated into normal lambda, so there is no performance
penalty.
 
See `-let' for the description of destructuring mechanism.
 
(fn MATCH-FORM &rest BODY)
(defalias '-lambda '(macro . #[385 ":\204\n\300\301\302\"\207\303\304\"\203\305BB\207\306\307\2038@\211\310\311\312\"!DB\262\210\211T\262A\262\202\266\211\237\262\305\313\314\"\315BBE\207" [signal wrong-type-argument "match-form must be a list" -all\? symbolp lambda nil 0 make-symbol format "input%d" mapcar #[257 "\211A@\207" [] 2 "\n\n(fn IT)"] -let*] 11 (#$ . 71787)]))
(byte-code "\300\301\302\303#\300\301\304\305#\306\301\307\310#\207" [function-put -lambda doc-string-elt 2 lisp-indent-function defun put edebug-form-spec (&define sexp [&optional stringp] [&optional ("interactive" interactive)] def-body)] 6)
#@530 Bind each MATCH-FORM to the value of its VAL.
 
MATCH-FORM destructuring is done according to the rules of `-let'.
 
This macro allows you to bind multiple variables by destructuring
the value, so for example:
 
  (-setq (a b) x
         (&plist :c c) plist)
 
expands roughly speaking to the following code
 
  (setq a (car x)
        b (cadr x)
        c (plist-get plist :c))
 
Care is taken to only evaluate each VAL once so that in case of
multiple assignments it does not cause unexpected side effects.
 
(fn [MATCH-FORM VAL]...)
(defalias '-setq '(macro . #[128 "\300G\301\"\302U\203\303\304!\210\305\306\307\301\"\"\310\311\"\312\305\313\"\314\315\302\"\316\317\305\320\"!BE\316\317!BF\207" [mod 2 1 error "Odd number of arguments" -map #[257 "\300@A@\"\207" [dash--match] 4 "\n\n(fn X)"] -partition -mapcat #[257 "\300\301\302\303\203&@\304\305\306@!\"\204\211B\262\210\211T\262A\262\202\266\211\237\262\"\207" [-map #[257 "\211@\211\300\301\302!\303Q!D\207" [make-symbol "--dash-binding-" symbol-name "--"] 7 "\n\n(fn BINDING)"] nil 0 string-prefix-p "--" symbol-name] 11 "\n\n(fn BINDINGS)"] let cadr let* -flatten-n setq -flatten reverse] 12 (#$ . 72858)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -setq edebug-form-spec (&rest sexp form) function-put lisp-indent-function 1] 4)
#@320 If all VALS evaluate to true, bind them to their corresponding
VARS and do THEN, otherwise do ELSE. VARS-VALS should be a list
of (VAR VAL) pairs.
 
Note: binding is done according to `-let*'.  VALS are evaluated
sequentially, and evaluation stops after the first nil VAL is
encountered.
 
(fn VARS-VALS THEN &rest ELSE)
(defalias '-if-let* '(macro . #[642 "\300\301\302\303\304\"\"!\305\2036@\211@A@\306DC\307     BBBE\266\202\262\210\211T\262A\262\202\f\266\211\207" [reverse apply append mapcar #[257 "\300@A@\"\207" [dash--match] 4 "\n\n(fn IT)"] 0 let if] 15 (#$ . 74204)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -if-let* edebug-form-spec ((&rest (sexp form)) form body) function-put lisp-indent-function 2] 4)
#@153 If VAL evaluates to non-nil, bind it to VAR and do THEN,
otherwise do ELSE.
 
Note: binding is done according to `-let'.
 
(fn (VAR VAL) THEN &rest ELSE)
(defalias '-if-let '(macro . #[642 "\300CBBB\207" [-if-let*] 7 (#$ . 74969)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -if-let edebug-form-spec ((sexp form) form body) function-put lisp-indent-function 2] 4)
#@111 If VAL evaluates to non-nil, bind it to symbol `it' and do THEN,
otherwise do ELSE.
 
(fn VAL THEN &rest ELSE)
(defalias '--if-let '(macro . #[642 "\300\301DBBB\207" [-if-let it] 7 (#$ . 75364)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --if-let edebug-form-spec (form form body) function-put lisp-indent-function 2] 4)
#@301 If all VALS evaluate to true, bind them to their corresponding
VARS and execute body. VARS-VALS should be a list of (VAR VAL)
pairs.
 
Note: binding is done according to `-let*'.  VALS are evaluated
sequentially, and evaluation stops after the first nil VAL is
encountered.
 
(fn VARS-VALS &rest BODY)
(defalias '-when-let* '(macro . #[385 "\300\301BE\207" [-if-let* progn] 6 (#$ . 75718)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -when-let* edebug-form-spec ((&rest (sexp form)) body) function-put lisp-indent-function 1] 4)
#@134 If VAL evaluates to non-nil, bind it to VAR and execute body.
 
Note: binding is done according to `-let'.
 
(fn (VAR VAL) &rest BODY)
(defalias '-when-let '(macro . #[385 "\300\301BE\207" [-if-let progn] 6 (#$ . 76277)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put -when-let edebug-form-spec ((sexp form) body) function-put lisp-indent-function 1] 4)
#@92 If VAL evaluates to non-nil, bind it to symbol `it' and
execute body.
 
(fn VAL &rest BODY)
(defalias '--when-let '(macro . #[385 "\300\301BE\207" [--if-let progn] 6 (#$ . 76657)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\300\207" [put --when-let edebug-form-spec (form body) function-put lisp-indent-function 1] 4)
#@191 Tests for equality use this function or `equal' if this is nil.
It should only be set using dynamic scope with a let, like:
 
  (let ((-compare-fn #\='=)) (-union numbers1 numbers2 numbers3)
(defvar -compare-fn nil (#$ . 76992))
#@160 Return a new list with all duplicates removed.
The test for equality is done with `equal',
or with `-compare-fn' if that's non-nil.
 
Alias: `-uniq'
 
(fn LIST)
(defalias '-distinct #[257 "\300\301\203!@\302\"\204\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0 -contains\?] 8 (#$ . 77227)])
(defalias '-uniq '-distinct)
#@197 Return a new list containing the elements of LIST and elements of LIST2 that are not in LIST.
The test for equality is done with `equal',
or with `-compare-fn' if that's non-nil.
 
(fn LIST LIST2)
(defalias '-union #[514 "\301!\302\300!\203\203\202\303\211\304>\203_\305\306\"\307\2038@\310\311#\266\211T\262A\262\202\266\307\203Z@\312\"\204N\211B\262\210\211T\262A\262\202<\266\202\201\307\203@\313\"\204s\211B\262\210\211T\262A\262\202a\266\211\237)\207" [-compare-fn reverse boundp equal (eq eql equal) make-hash-table :test 0 puthash t gethash -contains\?] 12 (#$ . 77576)])
#@191 Return a new list containing only the elements that are members of both LIST and LIST2.
The test for equality is done with `equal',
or with `-compare-fn' if that's non-nil.
 
(fn LIST LIST2)
(defalias '-intersection #[514 "\300\301\203!@\302\"\203\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0 -contains\?] 9 (#$ . 78217)])
#@174 Return a new list with only the members of LIST that are not in LIST2.
The test for equality is done with `equal',
or with `-compare-fn' if that's non-nil.
 
(fn LIST LIST2)
(defalias '-difference #[514 "\300\301\203!@\302\"\204\211B\262\210\211T\262A\262\202\266\211\237\207" [nil 0 -contains\?] 9 (#$ . 78572)])
#@42 Return the power set of LIST.
 
(fn LIST)
(defalias '-powerset #[257 "\211\204\300\207\301A!\302\303\304\305\306\307\310!\311\"\312\313%\"\"\207" [(nil) -powerset append mapcar make-byte-code 257 "\300@B\207" vconcat vector [] 3 "\n\n(fn X)"] 10 (#$ . 78907)])
#@45 Return the permutations of LIST.
 
(fn LIST)
(defalias '-permutations #[257 "\211\204\300\207\301\302\303\304\305\306\307\310!\311\"\312\313%\"\"\207" [(nil) apply append mapcar make-byte-code 257 "\301\302\303\304\305\306!\307\"\310\311%\312\313\300\"!\"\207" vconcat vector [mapcar make-byte-code 257 "\300B\207" vconcat vector [] 3 "\n\n(fn PERM)" -permutations remove] 8 "\n\n(fn X)"] 10 (#$ . 79181)])
#@41 Return all prefixes of LIST.
 
(fn LIST)
(defalias '-inits #[257 "\300\301\302\237!\"\237\207" [-map reverse -tails] 5 (#$ . 79602)])
#@40 Return all suffixes of LIST
 
(fn LIST)
(defalias '-tails #[257 "\300\301\302#\207" [-reductions-r-from cons nil] 5 (#$ . 79742)])
#@62 Return the longest common prefix of LISTS.
 
(fn &rest LISTS)
(defalias '-common-prefix #[128 "\211\211\203b\211@A\300\203Z@\301\302\300\203F\203F@\203/\211A\262\n\242\232\2045\301\262\202:\211B\262\210\211T\262A\262\202\266\211\237\262\262\210\211T\262A\262\202\n\266\211\262\202\242\301\211\211\302\300\203\232\203\232@\203\203\211A\262\242\232\204\211\301\262\202\216\211B\262\210\211T\262A\262\202h\266\211\237\262\266\202\207" [0 nil t] 13 (#$ . 79879)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -common-prefix pure t side-effect-free] 5)
#@62 Return the longest common suffix of LISTS.
 
(fn &rest LISTS)
(defalias '-common-suffix #[128 "\300\301\302\303\"\"\237\207" [apply -common-prefix mapcar reverse] 6 (#$ . 80518)])
#@169 Return non-nil if LIST contains ELEMENT.
 
The test for equality is done with `equal', or with `-compare-fn'
if that's non-nil.
 
Alias: `-contains-p'
 
(fn LIST ELEMENT)
(defalias '-contains\? #[514 "\204\n\211\235\202:\301=\203\211>\202:\302=\203#\303\"\202:\211\2037@\"\2047\211A\262\202$\211\262??\207" [-compare-fn eq eql memql] 6 (#$ . 80705)])
(defalias '-contains-p '-contains\?)
#@149 Return true if LIST and LIST2 has the same items.
 
The order of the elements in the lists does not matter.
 
Alias: `-same-items-p'
 
(fn LIST LIST2)
(defalias '-same-items\? #[514 "GGU\205\300\"GU\207" [-intersection] 8 (#$ . 81120)])
(defalias '-same-items-p '-same-items\?)
#@86 Return non-nil if PREFIX is prefix of LIST.
 
Alias: `-is-prefix-p'
 
(fn PREFIX LIST)
(defalias '-is-prefix\? #[514 "\211\300\301\203*\203*@@\232\204\302\262\202A\262\210\211T\262A\262\202\266?\207" [t 0 nil] 8 (#$ . 81410)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -is-prefix\? pure t side-effect-free] 5)
#@86 Return non-nil if SUFFIX is suffix of LIST.
 
Alias: `-is-suffix-p'
 
(fn SUFFIX LIST)
(defalias '-is-suffix\? #[514 "\300\301!\301!\"\207" [-is-prefix\? reverse] 6 (#$ . 81773)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -is-suffix\? pure t side-effect-free] 5)
#@118 Return non-nil if INFIX is infix of LIST.
 
This operation runs in O(n^2) time
 
Alias: `-is-infix-p'
 
(fn INFIX LIST)
(defalias '-is-infix\? #[514 "\300\211\204\203\301\"\262A\262\202\211\207" [nil -is-prefix\?] 6 (#$ . 82071)])
(byte-code "\300\301\302\303#\300\301\304\303#\305\306\307\"\210\305\310\311\"\210\305\312\301\"\207" [function-put -is-infix\? pure t side-effect-free defalias -is-prefix-p -is-prefix\? -is-suffix-p -is-suffix\? -is-infix-p] 5)
#@268 Sort LIST, stably, comparing elements using COMPARATOR.
Return the sorted list.  LIST is NOT modified by side effects.
COMPARATOR is called with two elements of LIST, and should return non-nil
if the first element should sort before the second.
 
(fn COMPARATOR LIST)
(defalias '-sort #[514 "\300\301!\"\207" [sort copy-sequence] 5 (#$ . 82547)])
#@44 Anaphoric form of `-sort'.
 
(fn FORM LIST)
(defalias '--sort '(macro . #[514 "\300\301\302EE\207" [-sort lambda (it other)] 6 (#$ . 82901)]))
(put '--sort 'edebug-form-spec '(form form))
#@151 Return a list with ARGS.
 
If first item of ARGS is already a list, simply return ARGS.  If
not, return a list with ARGS as elements.
 
(fn &rest ARGS)
(defalias '-list #[128 "\211@\211<\203 \211\202\f\207" [] 3 (#$ . 83097)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -list pure t side-effect-free] 5)
#@82 Return a list with X repeated N times.
Return nil if N is less than 1.
 
(fn N X)
(defalias '-repeat #[514 "\300\301\211W\203B\262\211T\262\202\266\211\207" [nil 0] 7 (#$ . 83435)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -repeat pure t side-effect-free] 5)
#@36 Return the sum of LIST.
 
(fn LIST)
(defalias '-sum #[257 "\300\301\"\207" [apply +] 4 (#$ . 83739)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -sum pure t side-effect-free] 5)
#@87 Return a list with running sums of items in LIST.
 
LIST must be non-empty.
 
(fn LIST)
(defalias '-running-sum #[257 "\211:\204    \300\301!\210\302\303\"\207" [error "LIST must be non-empty" -reductions +] 4 (#$ . 83950)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -running-sum pure t side-effect-free] 5)
#@40 Return the product of LIST.
 
(fn LIST)
(defalias '-product #[257 "\300\301\"\207" [apply *] 4 (#$ . 84289)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -product pure t side-effect-free] 5)
#@91 Return a list with running products of items in LIST.
 
LIST must be non-empty.
 
(fn LIST)
(defalias '-running-product #[257 "\211:\204    \300\301!\210\302\303\"\207" [error "LIST must be non-empty" -reductions *] 4 (#$ . 84512)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -running-product pure t side-effect-free] 5)
#@70 Return the largest value from LIST of numbers or markers.
 
(fn LIST)
(defalias '-max #[257 "\300\301\"\207" [apply max] 4 (#$ . 84863)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -max pure t side-effect-free] 5)
#@71 Return the smallest value from LIST of numbers or markers.
 
(fn LIST)
(defalias '-min #[257 "\300\301\"\207" [apply min] 4 (#$ . 85110)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -min pure t side-effect-free] 5)
#@225 Take a comparison function COMPARATOR and a LIST and return
the greatest element of the list by the comparison function.
 
See also combinator `-on' which can transform the values before
comparing them.
 
(fn COMPARATOR LIST)
(defalias '-max-by #[514 "\211\211\2033\211@A\300\203+@\"\203\211\202\262\210\211T\262A\262\202\n\266\211\262\202C\301\211\"\203@\211\202A\266\202\207" [0 nil] 10 (#$ . 85359)])
#@222 Take a comparison function COMPARATOR and a LIST and return
the least element of the list by the comparison function.
 
See also combinator `-on' which can transform the values before
comparing them.
 
(fn COMPARATOR LIST)
(defalias '-min-by #[514 "\211\211\2033\211@A\300\203+@\"\203\202\211\262\210\211T\262A\262\202\n\266\211\262\202C\301\211\"\203@\202A\211\266\202\207" [0 nil] 10 (#$ . 85796)])
#@117 Anaphoric version of `-max-by'.
 
The items for the comparator form are exposed as "it" and "other".
 
(fn FORM LIST)
(defalias '--max-by '(macro . #[514 "\300\301\302EE\207" [-max-by lambda (it other)] 6 (#$ . 86230)]))
(put '--max-by 'edebug-form-spec '(form form))
#@117 Anaphoric version of `-min-by'.
 
The items for the comparator form are exposed as "it" and "other".
 
(fn FORM LIST)
(defalias '--min-by '(macro . #[514 "\300\301\302EE\207" [-min-by lambda (it other)] 6 (#$ . 86505)]))
(put '--min-by 'edebug-form-spec '(form form))
#@182 Return a list of iterated applications of FUN to INIT.
 
This means a list of form:
 
  (init (fun init) (fun (fun init)) ...)
 
N is the length of the returned list.
 
(fn FUN INIT N)
(defalias '-iterate #[771 "\211\300U?\205'CS\300\211W\203!@!B\262\211T\262\202\f\266\211\237\262\207" [0] 8 (#$ . 86780)])
#@139 Compute the (least) fixpoint of FN with initial input LIST.
 
FN is called at least once, results are compared with `equal'.
 
(fn FN LIST)
(defalias '-fix #[514 "!\232\204\211\262!\262\202\211\207" [] 5 (#$ . 87104)])
#@43 Anaphoric form of `-fix'.
 
(fn FORM LIST)
(defalias '--fix '(macro . #[514 "\300\301\302EE\207" [-fix lambda (it)] 6 (#$ . 87339)]))
#@362 Build a list from SEED using FUN.
 
This is "dual" operation to `-reduce-r': while -reduce-r
consumes a list to produce a single value, `-unfold' takes a
seed value and builds a (potentially infinite!) list.
 
FUN should return `nil' to stop the generating process, or a
cons (A . B), where A will be prepended to the result and B is
the new seed.
 
(fn FUN SEED)
(defalias '-unfold #[514 "!\300\203@B\262A!\262\202\211\237\207" [nil] 6 (#$ . 87481)])
#@49 Anaphoric version of `-unfold'.
 
(fn FORM SEED)
(defalias '--unfold '(macro . #[514 "\300\301\302EE\207" [-unfold lambda (it)] 6 (#$ . 87949)]))
(put '--unfold 'edebug-form-spec '(form form))
#@91 Return non-nil if CON is true cons pair.
That is (A . B) where B is not a list.
 
(fn CON)
(defalias '-cons-pair\? #[257 "\211<\205    \211A<?\207" [] 2 (#$ . 88149)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -cons-pair\? pure t side-effect-free] 5)
#@88 Convert a cons pair to a list with `car' and `cdr' of the pair respectively.
 
(fn CON)
(defalias '-cons-to-list #[257 "\211@AD\207" [] 3 (#$ . 88431)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -cons-to-list pure t side-effect-free] 5)
#@192 Convert a value to a list.
 
If the value is a cons pair, make a list with two elements, `car'
and `cdr' of the pair respectively.
 
If the value is anything else, wrap it in a list.
 
(fn VAL)
(defalias '-value-to-list #[257 "\300!\203\n\301!\207\211C\207" [-cons-pair\? -cons-to-list] 3 (#$ . 88703)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -value-to-list pure t side-effect-free] 5)
#@423 Apply FN to each element of TREE, and make a list of the results.
If elements of TREE are lists themselves, apply FN recursively to
elements of these nested lists.
 
Then reduce the resulting lists using FOLDER and initial value
INIT-VALUE. See `-reduce-r-from'.
 
This is the same as calling `-tree-reduce-from' after `-tree-map'
but is twice as fast as it only traverse the structure once.
 
(fn FN FOLDER INIT-VALUE TREE)
(defalias '-tree-mapreduce-from #[1028 "\211\204\300\207\301!\203!\207\211<\203.\302\303\304\305\306\307\310\f\f\f#\311\"\312\313%\"#\207!\207" [nil -cons-pair\? -reduce-r-from mapcar make-byte-code 257 "\303\300\301\302$\207" vconcat vector [-tree-mapreduce-from] 6 "\n\n(fn X)"] 16 (#$ . 89127)])
#@77 Anaphoric form of `-tree-mapreduce-from'.
 
(fn FORM FOLDER INIT-VALUE TREE)
(defalias '--tree-mapreduce-from '(macro . #[1028 "\300\301\302E\301\303E\257\207" [-tree-mapreduce-from lambda (it) (it acc)] 9 (#$ . 89871)]))
(put '--tree-mapreduce-from 'edebug-form-spec '(form form form form))
#@407 Apply FN to each element of TREE, and make a list of the results.
If elements of TREE are lists themselves, apply FN recursively to
elements of these nested lists.
 
Then reduce the resulting lists using FOLDER and initial value
INIT-VALUE. See `-reduce-r-from'.
 
This is the same as calling `-tree-reduce' after `-tree-map'
but is twice as fast as it only traverse the structure once.
 
(fn FN FOLDER TREE)
(defalias '-tree-mapreduce #[771 "\211\204\300\207\301!\203!\207\211<\203+\302\303\304\305\306\307\310\n\n\"\311\"\312\313%\"\"\207!\207" [nil -cons-pair\? -reduce-r mapcar make-byte-code 257 "\302\300\301#\207" vconcat vector [-tree-mapreduce] 5 "\n\n(fn X)"] 13 (#$ . 90176)])
#@61 Anaphoric form of `-tree-mapreduce'.
 
(fn FORM FOLDER TREE)
(defalias '--tree-mapreduce '(macro . #[771 "\300\301\302E\301\303EF\207" [-tree-mapreduce lambda (it) (it acc)] 8 (#$ . 90882)]))
(put '--tree-mapreduce 'edebug-form-spec '(form form form))
#@85 Apply FN to each element of TREE while preserving the tree structure.
 
(fn FN TREE)
(defalias '-tree-map #[514 "\211\204\300\207\301!\203!\207\211<\203&\302\303\304\305\306\307!\310\"\311\312%\"\207!\207" [nil -cons-pair\? mapcar make-byte-code 257 "\301\300\"\207" vconcat vector [-tree-map] 4 "\n\n(fn X)"] 9 (#$ . 91142)])
#@48 Anaphoric form of `-tree-map'.
 
(fn FORM TREE)
(defalias '--tree-map '(macro . #[514 "\300\301\302EE\207" [-tree-map lambda (it)] 6 (#$ . 91488)]))
(put '--tree-map 'edebug-form-spec '(form form))
#@346 Use FN to reduce elements of list TREE.
If elements of TREE are lists themselves, apply the reduction recursively.
 
FN is first applied to INIT-VALUE and first element of the list,
then on this result and second element from the list etc.
 
The initial value is ignored on cons pairs as they always contain
two elements.
 
(fn FN INIT-VALUE TREE)
(defalias '-tree-reduce-from #[771 "\211\204\300\207\301!\203 \207\211<\203)\302\303\304\305\306\307\310  \"\311\"\312\313%\"#\207\207" [nil -cons-pair\? -reduce-r-from mapcar make-byte-code 257 "\302\300\301#\207" vconcat vector [-tree-reduce-from] 5 "\n\n(fn X)"] 14 (#$ . 91694)])
#@67 Anaphoric form of `-tree-reduce-from'.
 
(fn FORM INIT-VALUE TREE)
(defalias '--tree-reduce-from '(macro . #[771 "\300\301\302EF\207" [-tree-reduce-from lambda (it acc)] 7 (#$ . 92340)]))
(put '--tree-reduce-from 'edebug-form-spec '(form form form))
#@332 Use FN to reduce elements of list TREE.
If elements of TREE are lists themselves, apply the reduction recursively.
 
FN is first applied to first element of the list and second
element, then on this result and third element from the list etc.
 
See `-reduce-r' for how exactly are lists of zero or one element handled.
 
(fn FN TREE)
(defalias '-tree-reduce #[514 "\211\204\300\207\301!\203 \207\211<\203&\302\303\304\305\306\307\310    !\311\"\312\313%\"\"\207\207" [nil -cons-pair\? -reduce-r mapcar make-byte-code 257 "\301\300\"\207" vconcat vector [-tree-reduce] 4 "\n\n(fn X)"] 11 (#$ . 92599)])
#@51 Anaphoric form of `-tree-reduce'.
 
(fn FORM TREE)
(defalias '--tree-reduce '(macro . #[514 "\300\301\302EE\207" [-tree-reduce lambda (it acc)] 6 (#$ . 93210)]))
(put '--tree-reduce 'edebug-form-spec '(form form))
#@207 Call FUN on each node of TREE that satisfies PRED.
 
If PRED returns nil, continue descending down this node.  If PRED
returns non-nil, apply FUN to this node and do not descend
further.
 
(fn PRED FUN TREE)
(defalias '-tree-map-nodes #[771 "!\203\n!\207\211<\203(\300!\204(\301\302\303\304\305\306\"\307\"\310\311%\"\207\207" [-cons-pair\? -map make-byte-code 257 "\302\300\301#\207" vconcat vector [-tree-map-nodes] 5 "\n\n(fn X)"] 11 (#$ . 93432)])
#@59 Anaphoric form of `-tree-map-nodes'.
 
(fn PRED FORM TREE)
(defalias '--tree-map-nodes '(macro . #[771 "\300\301\302E\301\303EF\207" [-tree-map-nodes lambda (it) (it)] 8 (#$ . 93902)]))
#@363 Return a sequence of the nodes in TREE, in depth-first search order.
 
BRANCH is a predicate of one argument that returns non-nil if the
passed argument is a branch, that is, a node that can have children.
 
CHILDREN is a function of one argument that returns the children
of the passed branch node.
 
Non-branch nodes are simply copied.
 
(fn BRANCH CHILDREN TREE)
(defalias '-tree-seq #[771 "\211!\205\300\301\302\303\304\305        \"\306\"\307\310%!\"B\207" [-mapcat make-byte-code 257 "\302\300\301#\207" vconcat vector [-tree-seq] 5 "\n\n(fn X)"] 12 (#$ . 94097)])
#@59 Anaphoric form of `-tree-seq'.
 
(fn BRANCH CHILDREN TREE)
(defalias '--tree-seq '(macro . #[771 "\300\301\302E\301\303EF\207" [-tree-seq lambda (it) (it)] 8 (#$ . 94673)]))
#@205 Create a deep copy of LIST.
The new list has the same elements and structure but all cons are
replaced with new ones.  This is useful when you need to clone a
structure such as plist or alist.
 
(fn LIST)
(defalias '-clone #[257 "\300\301\"\207" [-tree-map identity] 4 (#$ . 94856)])
(byte-code "\300\301\302\303#\300\301\304\303#\300\207" [function-put -clone pure t side-effect-free] 5)
#@69 Add syntax highlighting to dash functions, macros and magic values.
(defalias 'dash-enable-font-lock #[0 "\300\301\302\"\207" [eval-after-load lisp-mode #[0 "\302\303\304\305\306\307\310\"\311Q\312BC\313#\210\304\305\314\307\310\"\311Q\315BC\313#\266\316 \317\205N@r\211q\210\305=\203A\320\301!\203A    \203A\321 \210)\210\211T\262A\262\202$\207" [major-mode font-lock-mode ("!cons" "!cdr" "-each" "--each" "-each-indexed" "--each-indexed" "-each-while" "--each-while" "-doto" "-dotimes" "--dotimes" "-map" "--map" "-reduce-from" "--reduce-from" "-reduce" "--reduce" "-reduce-r-from" "--reduce-r-from" "-reduce-r" "--reduce-r" "-reductions-from" "-reductions-r-from" "-reductions" "-reductions-r" "-filter" "--filter" "-select" "--select" "-remove" "--remove" "-reject" "--reject" "-remove-first" "--remove-first" "-reject-first" "--reject-first" "-remove-last" "--remove-last" "-reject-last" "--reject-last" "-remove-item" "-non-nil" "-keep" "--keep" "-map-indexed" "--map-indexed" "-splice" "--splice" "-splice-list" "--splice-list" "-map-when" "--map-when" "-replace-where" "--replace-where" "-map-first" "--map-first" "-map-last" "--map-last" "-replace" "-replace-first" "-replace-last" "-flatten" "-flatten-n" "-concat" "-mapcat" "--mapcat" "-copy" "-cons*" "-snoc" "-first" "--first" "-find" "--find" "-some" "--some" "-any" "--any" "-last" "--last" "-first-item" "-second-item" "-third-item" "-fourth-item" "-fifth-item" "-last-item" "-butlast" "-count" "--count" "-any?" "--any?" "-some?" "--some?" "-any-p" "--any-p" "-some-p" "--some-p" "-some->" "-some->>" "-some-->" "-all?" "-all-p" "--all?" "--all-p" "-every?" "--every?" "-all-p" "--all-p" "-every-p" "--every-p" "-none?" "--none?" "-none-p" "--none-p" "-only-some?" "--only-some?" "-only-some-p" "--only-some-p" "-slice" "-take" "-drop" "-drop-last" "-take-last" "-take-while" "--take-while" "-drop-while" "--drop-while" "-split-at" "-rotate" "-insert-at" "-replace-at" "-update-at" "--update-at" "-remove-at" "-remove-at-indices" "-split-with" "--split-with" "-split-on" "-split-when" "--split-when" "-separate" "--separate" "-partition-all-in-steps" "-partition-in-steps" "-partition-all" "-partition" "-partition-after-item" "-partition-after-pred" "-partition-before-item" "-partition-before-pred" "-partition-by" "--partition-by" "-partition-by-header" "--partition-by-header" "-group-by" "--group-by" "-interpose" "-interleave" "-unzip" "-zip-with" "--zip-with" "-zip" "-zip-fill" "-zip-pair" "-cycle" "-pad" "-annotate" "--annotate" "-table" "-table-flat" "-partial" "-elem-index" "-elem-indices" "-find-indices" "--find-indices" "-find-index" "--find-index" "-find-last-index" "--find-last-index" "-select-by-indices" "-select-columns" "-select-column" "-grade-up" "-grade-down" "->" "->>" "-->" "-as->" "-when-let" "-when-let*" "--when-let" "-if-let" "-if-let*" "--if-let" "-let*" "-let" "-lambda" "-distinct" "-uniq" "-union" "-intersection" "-difference" "-powerset" "-permutations" "-inits" "-tails" "-common-prefix" "-common-suffix" "-contains?" "-contains-p" "-same-items?" "-same-items-p" "-is-prefix-p" "-is-prefix?" "-is-suffix-p" "-is-suffix?" "-is-infix-p" "-is-infix?" "-sort" "--sort" "-list" "-repeat" "-sum" "-running-sum" "-product" "-running-product" "-max" "-min" "-max-by" "--max-by" "-min-by" "--min-by" "-iterate" "--iterate" "-fix" "--fix" "-unfold" "--unfold" "-cons-pair?" "-cons-to-list" "-value-to-list" "-tree-mapreduce-from" "--tree-mapreduce-from" "-tree-mapreduce" "--tree-mapreduce" "-tree-map" "--tree-map" "-tree-reduce-from" "--tree-reduce-from" "-tree-reduce" "--tree-reduce" "-tree-seq" "--tree-seq" "-tree-map-nodes" "--tree-map-nodes" "-clone" "-rpartial" "-juxt" "-applify" "-on" "-flip" "-const" "-cut" "-orfn" "-andfn" "-iteratefn" "-fixfn" "-prodfn") ("it" "it-index" "acc" "other") font-lock-add-keywords emacs-lisp-mode "\\_<" regexp-opt paren "\\_>" (1 font-lock-variable-name-face) append "(\\s-*" (1 font-lock-keyword-face) buffer-list 0 boundp font-lock-refresh-defaults] 8]] 3 (#$ . 95251)])
(provide 'dash)