forked from kindohm/vscode-tidalcycles
-
Notifications
You must be signed in to change notification settings - Fork 11
/
commands-generated.yaml
1696 lines (1696 loc) · 42 KB
/
commands-generated.yaml
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
## ../tmp/doc-allfunc.txt
_every:
cmd: _every Int -> Int -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
`_every'`
links:
- https://tidalcycles.org/index.php/_every
_fast:
cmd: _fast Time -> Pattern a -> Pattern a
params:
_run:
cmd: _run (Enum a, Num a) => a -> Pattern a
params:
_scan:
cmd: _scan (Enum a, Num a) => a -> Pattern a
params:
_slow:
cmd: _slow Time -> Pattern a -> Pattern a
params:
append:
cmd: append Pattern a -> Pattern a -> Pattern a
params:
cat:
cmd: cat [Pattern a] -> Pattern a
params:
compress:
cmd: compress Arc -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/compress
compressTo:
cmd: compressTo Arc -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/compressTo
cosine:
cmd: cosine Fractional a => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cosine
density:
cmd: density Pattern Time -> Pattern a -> Pattern a
params:
densityGap:
cmd: densityGap Pattern Time -> Pattern a -> Pattern a
params:
envEq:
cmd: envEq Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/envEq
envEqR:
cmd: envEqR Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/envEqR
envL:
cmd: envL Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/envL
envLR:
cmd: envLR Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/envLR
every:
cmd: every Pattern Int -> Pattern Int -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
`every'`
links:
- https://tidalcycles.org/index.php/every
fast:
cmd: fast Pattern Time -> Pattern a -> Pattern a
params:
fastAppend:
cmd: fastAppend Pattern a -> Pattern a -> Pattern a
params:
fastCat:
cmd: fastCat [Pattern a] -> Pattern a
params:
fastFromList:
cmd: fastFromList [a] -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fastFromList
fastGap:
cmd: fastGap Pattern Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fastGap
fastRepeatCycles:
cmd: fastRepeatCycles Int -> Pattern a -> Pattern a
params:
fastSqueeze:
cmd: fastSqueeze Pattern Time -> Pattern a -> Pattern a
params:
fastcat:
cmd: fastcat [Pattern a] -> Pattern a
params:
foldEvery:
cmd: foldEvery [Int] -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
fromList:
cmd: fromList [a] -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fromList
fromMaybes:
cmd: fromMaybes [Maybe a] -> Pattern a
params:
isaw:
cmd: isaw (Fractional a, Real a) => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/isaw
listToPat:
cmd: listToPat [a] -> Pattern a
params:
overlay:
cmd: overlay Pattern a -> Pattern a -> Pattern a
params:
repeatCycles:
cmd: repeatCycles Int -> Pattern a -> Pattern a
params:
rev:
cmd: rev Pattern a -> Pattern a
params:
run:
cmd: run (Enum a, Num a) => Pattern a -> Pattern a
params:
saw:
cmd: saw (Fractional a, Real a) => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/saw
scan:
cmd: scan (Enum a, Num a) => Pattern a -> Pattern a
params:
sig:
cmd: sig (Time -> a) -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/sig
silence:
cmd: silence Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/silence
sine:
cmd: sine Fractional a => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/sine
slow:
cmd: slow Pattern Time -> Pattern a -> Pattern a
params:
slowAppend:
cmd: slowAppend Pattern a -> Pattern a -> Pattern a
params:
slowCat:
cmd: slowCat [Pattern a] -> Pattern a
params:
slowSqueeze:
cmd: slowSqueeze Pattern Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/slowSqueeze
slowcat:
cmd: slowcat [Pattern a] -> Pattern a
params:
sparsity:
cmd: sparsity Pattern Time -> Pattern a -> Pattern a
params:
square:
cmd: square (Fractional a, Real a) => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/square
stack:
cmd: stack [Pattern a] -> Pattern a
params:
timeCat:
cmd: timeCat [(Time, Pattern a)] -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/timeCat
tri:
cmd: tri (Fractional a, Real a) => Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/tri
when:
cmd: when (Int -> Bool) -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
whenT:
cmd: whenT (Time -> Bool) -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/whenT
zoom:
cmd: zoom Pattern Time -> Pattern a -> Pattern a
params:
help: |
<nowiki>|%</nowiki>
<nowiki>|%|</nowiki>
<nowiki>|*</nowiki>
<nowiki>|*|</nowiki>
<nowiki>|+</nowiki>
<nowiki>|+|</nowiki>
<nowiki>|-</nowiki>
<nowiki>|-|</nowiki>
<nowiki>|/</nowiki>
<nowiki>|/|</nowiki>
<nowiki>|<</nowiki>
<nowiki>|<|</nowiki>
<nowiki>|></nowiki>
<nowiki>|>|</nowiki>
<nowiki>~></nowiki>
links:
- https://tidalcycles.org/index.php/zoom
_cF:
cmd: _cF [Double] -> String -> Pattern Double
params:
_cP:
cmd: _cP (Enumerable a, Parseable a) => [Pattern a] -> String -> Pattern a
params:
_cS:
cmd: _cS [String] -> String -> Pattern String
params:
_cX:
cmd: _cX (Arc -> Value -> [Event a]) -> [a] -> String -> Pattern a
params:
_chop:
cmd: _chop Int -> ControlPattern -> ControlPattern
params:
_gap:
cmd: _gap Int -> ControlPattern -> ControlPattern
params:
_slice:
cmd: _slice Int -> Int -> ControlPattern -> ControlPattern
params:
_spin:
cmd: _spin Int -> ControlPattern -> ControlPattern
params:
_striate:
cmd: _striate Int -> ControlPattern -> ControlPattern
params:
_striateBy:
cmd: _striateBy Int -> Double -> ControlPattern -> ControlPattern
params:
_stut:
cmd: _stut Integer -> Double -> Rational -> ControlPattern -> ControlPattern
params:
_stutWith:
cmd: _stutWith (Num n, Ord n) => n -> Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
cF:
cmd: cF Double -> String -> Pattern Double
params:
cF0:
cmd: cF0 String -> Pattern Double
params:
cF_:
cmd: cF_ String -> Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cF_
cI:
cmd: cI String -> Pattern Int
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cI
cP:
cmd: cP (Enumerable a, Parseable a) => Pattern a -> String -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cP
cP_:
cmd: cP_ (Enumerable a, Parseable a) => String -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cP_
cR:
cmd: cR Time -> String -> Pattern Rational
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cR
cR0:
cmd: cR0 String -> Pattern Time
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cR0
cR_:
cmd: cR_ String -> Pattern Time
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cR_
cS:
cmd: cS String -> String -> Pattern String
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cS
cS_:
cmd: cS_ String -> Pattern String
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cS_
cT:
cmd: cT Time -> String -> Pattern Time
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cT
cT0:
cmd: cT0 String -> Pattern Time
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cT0
cT_:
cmd: cT_ String -> Pattern Time
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cT_
chop:
cmd: chop Pattern Int -> ControlPattern -> ControlPattern
params:
chopArc:
cmd: chopArc Arc -> Int -> [Arc]
params:
gap:
cmd: gap Pattern Int -> ControlPattern -> ControlPattern
params:
hurry:
cmd: hurry Pattern Rational -> ControlPattern -> ControlPattern
params:
in0:
cmd: in0 Pattern Double
params:
in1:
cmd: in1 Pattern Double
params:
help: |
TODO
... up to ...
links:
- https://tidalcycles.org/index.php/in1
in127:
cmd: in127 Pattern Double
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/in127
interlace:
cmd: interlace ControlPattern -> ControlPattern -> ControlPattern
params:
loopAt:
cmd: loopAt Pattern Time -> ControlPattern -> ControlPattern
params:
mergePlayRange:
cmd: mergePlayRange (Double, Double) -> ControlMap -> ControlMap
params:
randslice:
cmd: randslice Int -> ControlPattern -> ControlPattern
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/randslice
slice:
cmd: slice Pattern Int -> Pattern Int -> ControlPattern -> ControlPattern
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/slice
smash:
cmd: smash Int -> [Pattern Time] -> ControlPattern -> Pattern ControlMap
params:
help: |
`smash'`
links:
- https://tidalcycles.org/index.php/smash
spin:
cmd: spin Pattern Int -> ControlPattern -> ControlPattern
params:
striate:
cmd: striate Pattern Int -> Pattern Double -> ControlPattern -> ControlPattern
params:
help: |
`striate'`
links:
- https://tidalcycles.org/index.php/striate
striateBy:
cmd: striateBy Pattern Int -> Pattern Double -> ControlPattern -> ControlPattern
params:
stut:
cmd: stut Pattern Int -> Pattern Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
`stut'`
links:
- https://tidalcycles.org/index.php/stut
stutWith:
cmd: stutWith Pattern Int -> Pattern Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
weave:
cmd: weave Time -> Pattern a -> [Pattern a -> Pattern a] -> Pattern a
params:
help: |
`weave'`
links:
- https://tidalcycles.org/index.php/weave
weaveWith:
cmd: weaveWith Time -> Pattern a -> [Pattern a -> Pattern a] -> Pattern a
params:
_degradeBy:
cmd: _degradeBy Double -> Pattern a -> Pattern a
params:
_distrib:
cmd: _distrib [Int] -> Pattern a -> Pattern a
params:
_euclid:
cmd: _euclid Int -> Int -> Pattern a -> Pattern a
params:
help: |
`_euclid'`
links:
- https://tidalcycles.org/index.php/_euclid
_euclidBool:
cmd: _euclidBool Int -> Int -> Pattern Bool
params:
_euclidFull:
cmd: _euclidFull Int -> Int -> Pattern a -> Pattern a -> Pattern a
params:
_euclidInv:
cmd: _euclidInv Int -> Int -> Pattern a -> Pattern a
params:
_euclidOff:
cmd: _euclidOff Int -> Int -> Integer -> Pattern a -> Pattern a
params:
_euclidOffBool:
cmd: _euclidOffBool Int -> Int -> Integer -> Pattern Bool -> Pattern Bool
params:
_iter:
cmd: _iter Int -> Pattern a -> Pattern a
params:
help: |
`_iter'`
links:
- https://tidalcycles.org/index.php/_iter
_linger:
cmd: _linger Time -> Pattern a -> Pattern a
params:
_off:
cmd: _off Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
_ply:
cmd: _ply Int -> Pattern a -> Pattern a
params:
_range:
cmd: _range (Functor f, Num b) => b -> b -> f b -> f b
params:
_rot:
cmd: _rot Ord a => Int -> Pattern a -> Pattern a
params:
_segment:
cmd: _segment Time -> Pattern a -> Pattern a
params:
_select:
cmd: _select Double -> [Pattern a] -> Pattern a
params:
_stripe:
cmd: _stripe Int -> Pattern a -> Pattern a
params:
_trunc:
cmd: _trunc Time -> Pattern a -> Pattern a
params:
_unDegradeBy:
cmd: _unDegradeBy Double -> Pattern a -> Pattern a
params:
almostAlways:
cmd: almostAlways (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
almostNever:
cmd: almostNever (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
always:
cmd: always (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
arpeggiate:
cmd: arpeggiate Pattern a -> Pattern a
params:
arpg:
cmd: arpg Pattern a -> Pattern a
params:
brak:
cmd: brak Pattern a -> Pattern a
params:
choose:
cmd: choose [a] -> Pattern a
params:
chooseBy:
cmd: chooseBy Pattern Double -> [a] -> Pattern a
params:
chunk:
cmd: chunk Integral a => a -> (Pattern b -> Pattern b) -> Pattern b -> Pattern b
params:
help: |
TODO
`chunk'`
links:
- https://tidalcycles.org/index.php/chunk
contrast:
cmd: contrast (ControlPattern -> ControlPattern) -> (ControlPattern -> ControlPattern) -> ControlPattern -> ControlPattern -> ControlPattern
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/contrast
contrastBy:
cmd: contrastBy (a -> Value -> Bool) -> (ControlPattern -> Pattern b) -> (ControlPattern -> Pattern b) -> Pattern (containers-0.5.7.1:Data.Map.Base.Map String a) -> Pattern (containers-0.5.7.1:Data.Map.Base.Map String Value) -> Pattern b
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/contrastBy
contrastRange:
cmd: contrastRange (ControlPattern -> Pattern a) -> (ControlPattern -> Pattern a) -> Pattern (containers-0.5.7.1:Data.Map.Base.Map String (Value, Value)) -> ControlPattern -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/contrastRange
cycleChoose:
cmd: cycleChoose [a] -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/cycleChoose
degrade:
cmd: degrade Pattern a -> Pattern a
params:
degradeBy:
cmd: degradeBy Pattern Double -> Pattern a -> Pattern a
params:
degradeOverBy:
cmd: degradeOverBy Int -> Pattern Double -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/degradeOverBy
discretise:
cmd: discretise Pattern Time -> Pattern a -> Pattern a
params:
distrib:
cmd: distrib [Pattern Int] -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/distrib
double:
cmd: double Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/double
echo:
cmd: echo Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/echo
enclosingArc:
cmd: enclosingArc [Arc] -> Arc
params:
euclid:
cmd: euclid Pattern Int -> Pattern Int -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/euclid
euclidFull:
cmd: euclidFull Pattern Int -> Pattern Int -> Pattern a -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/euclidFull
euclidInv:
cmd: euclidInv Pattern Int -> Pattern Int -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/euclidInv
euclidOff:
cmd: euclidOff Pattern Int -> Pattern Int -> Pattern Integer -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/euclidOff
euclidOffBool:
cmd: euclidOffBool Pattern Int -> Pattern Int -> Pattern Integer -> Pattern Bool -> Pattern Bool
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/euclidOffBool
fadeIn:
cmd: fadeIn Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fadeIn
fadeInFrom:
cmd: fadeInFrom Time -> Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fadeInFrom
fadeOut:
cmd: fadeOut Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fadeOut
fadeOutFrom:
cmd: fadeOutFrom Time -> Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fadeOutFrom
fastspread:
cmd: fastspread (a -> t -> Pattern b) -> [a] -> t -> Pattern b
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fastspread
fit:
cmd: fit Pattern Time -> Int -> Pattern Int -> Pattern Int -> Pattern a -> Pattern a
params:
help: |
`fit'`
links:
- https://tidalcycles.org/index.php/fit
fix:
cmd: fix (ControlPattern -> ControlPattern) -> ControlPattern -> ControlPattern -> ControlPattern
params:
fixRange:
cmd: fixRange (ControlPattern -> Pattern ControlMap) -> Pattern (containers-0.5.7.1:Data.Map.Base.Map String (Value, Value)) -> ControlPattern -> Pattern ControlMap
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/fixRange
flatpat:
cmd: flatpat Pattern [a] -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/flatpat
ghost:
cmd: ghost Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
TODO
`ghost'`
`ghost''`
links:
- https://tidalcycles.org/index.php/ghost
ifp:
cmd: ifp (Int -> Bool) -> (Pattern a -> Pattern a) -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
index:
cmd: index Real b => b -> Pattern b -> Pattern c -> Pattern c
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/index
inhabit:
cmd: inhabit [(String, Pattern a)] -> Pattern String -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/inhabit
inside:
cmd: inside Pattern Time -> (Pattern a1 -> Pattern a) -> Pattern a1 -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/inside
inv:
cmd: inv Functor f => f Bool -> f Bool
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/inv
irand:
cmd: irand Num a => Int -> Pattern a
params:
iter:
cmd: iter Pattern Int -> Pattern c -> Pattern c
params:
help: |
`iter'`
links:
- https://tidalcycles.org/index.php/iter
jux:
cmd: jux [t -> Pattern ControlMap] -> t -> Pattern ControlMap
params:
help: |
`jux'`
TODO
links:
- https://tidalcycles.org/index.php/jux
jux4:
cmd: jux4 (Pattern ControlMap -> Pattern ControlMap) -> Pattern ControlMap -> Pattern ControlMap
params:
help: |
remove?
links:
- https://tidalcycles.org/index.php/jux4
juxBy:
cmd: juxBy Pattern Double -> (Pattern ControlMap -> Pattern ControlMap) -> Pattern ControlMap -> Pattern ControlMap
params:
juxcut:
cmd: juxcut [t -> Pattern ControlMap] -> t -> Pattern ControlMap
params:
help: |
TODO
`juxcut'`
links:
- https://tidalcycles.org/index.php/juxcut
layer:
cmd: layer [a -> Pattern b] -> a -> Pattern b
params:
lindenmayer:
cmd: lindenmayer Int -> String -> String -> String
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/lindenmayer
lindenmayerI:
cmd: lindenmayerI Num b => Int -> String -> String -> [b]
params:
linger:
cmd: linger Pattern Time -> Pattern a -> Pattern a
params:
loopFirst:
cmd: loopFirst Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/loopFirst
mask:
cmd: mask Pattern Bool -> Pattern a -> Pattern a
params:
never:
cmd: never (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
off:
cmd: off Pattern Time -> (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/off
offadd:
cmd: offadd Num a => Pattern Time -> Pattern a -> Pattern a -> Pattern a
params:
help: |
deprecate?
links:
- https://tidalcycles.org/index.php/offadd
often:
cmd: often (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
outside:
cmd: outside Pattern Time -> (Pattern a1 -> Pattern a) -> Pattern a1 -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/outside
palindrome:
cmd: palindrome Pattern a -> Pattern a
params:
parseLMRule:
cmd: parseLMRule String -> [(Char, String)]
params:
help: |
TODO
`parseLMRule'`
links:
- https://tidalcycles.org/index.php/parseLMRule
permstep:
cmd: permstep RealFrac b => Int -> [a] -> Pattern b -> Pattern a
params:
pick:
cmd: pick String -> Int -> String
params:
help: |
deprecate?
links:
- https://tidalcycles.org/index.php/pick
ply:
cmd: ply Pattern Int -> Pattern a -> Pattern a
params:
quad:
cmd: quad Time -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/quad
quantise:
cmd: quantise (Functor f, RealFrac b) => b -> f b -> f b
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/quantise
rand:
cmd: rand Fractional a => Pattern a
params:
randArcs:
cmd: randArcs Int -> Pattern [Arc]
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/randArcs
randStruct:
cmd: randStruct Int -> Pattern Int
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/randStruct
randcat:
cmd: randcat [Pattern a] -> Pattern a
params:
range:
cmd: range Num a => Pattern a -> Pattern a -> Pattern a -> Pattern a
params:
rangex:
cmd: rangex (Functor f, Floating b) => b -> b -> f b -> f b
params:
rarely:
cmd: rarely (Pattern a -> Pattern a) -> Pattern a -> Pattern a
params:
revArc:
cmd: revArc Arc -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/revArc
rot:
cmd: rot Ord a => Pattern Int -> Pattern a -> Pattern a
params:
runWith:
cmd: runWith Integral a => a -> (Pattern b -> Pattern b) -> Pattern b -> Pattern b
params:
help: |
TODO
`runWith'`
links:
- https://tidalcycles.org/index.php/runWith
samples:
cmd: samples Applicative f => f String -> f Int -> f String
params:
help: |
deprecate?
`samples'`
links:
- https://tidalcycles.org/index.php/samples
scramble:
cmd: scramble Int -> Pattern a -> Pattern a
params:
segment:
cmd: segment Pattern Time -> Pattern a -> Pattern a
params:
select:
cmd: select Pattern Double -> [Pattern a] -> Pattern a
params:
seqP:
cmd: seqP [(Time, Time, Pattern a)] -> Pattern a
params:
seqPLoop:
cmd: seqPLoop [(Time, Time, Pattern a)] -> Pattern a
params:
sew:
cmd: sew Pattern Bool -> Pattern a -> Pattern a -> Pattern a
params:
shuffle:
cmd: shuffle Int -> Pattern a -> Pattern a
params:
slowspread:
cmd: slowspread (a -> t -> Pattern b) -> [a] -> t -> Pattern b
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/slowspread
slowstripe:
cmd: slowstripe Pattern Int -> Pattern a -> Pattern a
params:
help: |
TODO
links:
- https://tidalcycles.org/index.php/slowstripe
someCycles:
cmd: someCycles (Pattern a -> Pattern a) -> Pattern a -> Pattern a