This repository was archived by the owner on Dec 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOperatorDictionary.fs
9949 lines (9947 loc) · 404 KB
/
OperatorDictionary.fs
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
namespace MathML
module OperatorDictionary =
let acuteAccentPostfix =
{character = Unicode 0xB4;
glyph = "´";
name="acute accent";
priority = 880;
form = Postfix;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Accent true]}
let acuteAngleInfix =
{character = Unicode 0x299F;
glyph = "⦟";
name="acute angle";
form = Infix;
priority = 270;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let allEqualToInfix =
{character = Unicode 0x224C;
glyph = "≌";
name="all equal to";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let almostEqualOrEqualToInfix =
{character = Unicode 0x224A;
glyph = "≊";
name="almost equal or equal to";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let almostEqualToInfix =
{character = Unicode 0x2248;
glyph = "≈";
name="almost equal to";
form = Infix;
priority = 247;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let almostEqualToWithCircumflexAccentInfix =
{character = Unicode 0x2A6F;
glyph = "⩯";
name="almost equal to with circumflex accent";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let amalgamationOrCoproductInfix =
{character = Unicode 0x2A3F;
glyph = "⨿";
name="amalgamation or coproduct";
form = Infix;
priority = 390;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let ampersandPostfix =
{character = Char '&';
glyph = "&";
name="ampersand";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[]}
let anglePrefix =
{character = Unicode 0x2220;
glyph = "∠";
name="angle";
form = Prefix;
priority = 670;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[]}
let angleWithSInsideInfix =
{character = Unicode 0x299E;
glyph = "⦞";
name="angle with s inside";
form = Infix;
priority = 270;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let angleWithUnderbarInfix =
{character = Unicode 0x29A4;
glyph = "⦤";
name="angle with underbar";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let anticlockwiseClosedCircleArrowInfix =
{character = Unicode 0x2940;
glyph = "⥀";
name="anticlockwise closed circle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let anticlockwiseContourIntegralPrefix =
{character = Unicode 0x2233;
glyph = "∳";
name="anticlockwise contour integral";
form = Prefix;
priority = 310;
lspace= EM 0.<em>;
rspace = NamedLength VeryVeryThinMathSpace;
properties=[LargeOp true; Symmetric true]}
let anticlockwiseIntegrationPrefix =
{character = Unicode 0x2A11;
glyph = "⨑";
name="anticlockwise integration";
form = Prefix;
priority = 310;
lspace = NamedLength VeryVeryThinMathSpace;
rspace = NamedLength VeryThinMathSpace;
properties=[LargeOp true; MovableLimits true; Symmetric true]}
let anticlockwiseOpenCircleArrowInfix =
{character = Unicode 0x21BA;
glyph = "↺";
name="anticlockwise open circle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let anticlockwiseTopSemicircleArrowInfix =
{character = Unicode 0x21B6;
glyph = "↶";
name="anticlockwise top semicircle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[Accent true]}
let apostrophePostfix =
{character = Char ''';
glyph = "'";
name="apostrophe";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Accent true]}
let approachesTheLimitInfix =
{character = Unicode 0x2250;
glyph = "≐";
name="approaches the limit";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let approximatelyButNotActuallyEqualToInfix =
{character = Unicode 0x2246;
glyph = "≆";
name="approximately but not actually equal to";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let approximatelyEqualOrEqualToInfix =
{character = Unicode 0x2A70;
glyph = "⩰";
name="approximately equal or equal to";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let approximatelyEqualToInfix =
{character = Unicode 0x2245;
glyph = "≅";
name="approximately equal to";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let approximatelyEqualToOrTheImageOfInfix =
{character = Unicode 0x2252;
glyph = "≒";
name="approximately equal to or the image of";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let arrowPointingDownwardsThenCurvingLeftwardsInfix =
{character = Unicode 0x2936;
glyph = "⤶";
name="arrow pointing downwards then curving leftwards";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let arrowPointingDownwardsThenCurvingRightwardsInfix =
{character = Unicode 0x2937;
glyph = "⤷";
name="arrow pointing downwards then curving rightwards";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let arrowPointingRightwardsThenCurvingDownwardsInfix =
{character = Unicode 0x2935;
glyph = "⤵";
name="arrow pointing rightwards then curving downwards";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let arrowPointingRightwardsThenCurvingUpwardsInfix =
{character = Unicode 0x2934;
glyph = "⤴";
name="arrow pointing rightwards then curving upwards";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let assertionInfix =
{character = Unicode 0x22A6;
glyph = "⊦";
name="assertion";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let asteriskInfix =
{character = Char '*';
glyph = "*";
name="asterisk";
form = Infix;
priority = 390;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let asteriskOperatorInfix =
{character = Unicode 0x2217;
glyph = "∗";
name="asterisk operator";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let asymptoticallyEqualToInfix =
{character = Unicode 0x2243;
glyph = "≃";
name="asymptotically equal to";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let becauseInfix =
{character = Unicode 0x2235;
glyph = "∵";
name="because";
form = Infix;
priority = 70;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let betweenInfix =
{character = Unicode 0x226C;
glyph = "≬";
name="between";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let bigReverseSolidusInfix =
{character = Unicode 0x29F9;
glyph = "⧹";
name="big reverse solidus";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let bigSolidusInfix =
{character = Unicode 0x29F8;
glyph = "⧸";
name="big solidus";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackBowtieInfix =
{character = Unicode 0x29D3;
glyph = "⧓";
name="black bowtie";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let blackCircleInfix =
{character = Unicode 0x25CF;
glyph = "●";
name="black circle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackCircleWithDownArrowInfix =
{character = Unicode 0x29ED;
glyph = "⧭";
name="black circle with down arrow";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackDiamondInfix =
{character = Unicode 0x25C6;
glyph = "◆";
name="black diamond";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackDiamondWithDownArrowInfix =
{character = Unicode 0x29EA;
glyph = "⧪";
name="black diamond with down arrow";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackDownPointingSmallTriangleInfix =
{character = Unicode 0x25BE;
glyph = "▾";
name="black down-pointing small triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackDownPointingTriangleInfix =
{character = Unicode 0x25BC;
glyph = "▼";
name="black down-pointing triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackHourglassInfix =
{character = Unicode 0x29D7;
glyph = "⧗";
name="black hourglass";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackLeftPointingPointerInfix =
{character = Unicode 0x25C4;
glyph = "◄";
name="black left-pointing pointer";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackLeftPointingSmallTriangleInfix =
{character = Unicode 0x25C2;
glyph = "◂";
name="black left-pointing small triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackLeftPointingTriangleInfix =
{character = Unicode 0x25C0;
glyph = "◀";
name="black left-pointing triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackLozengeInfix =
{character = Unicode 0x29EB;
glyph = "⧫";
name="black lozenge";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackParallelogramInfix =
{character = Unicode 0x25B0;
glyph = "▰";
name="black parallelogram";
form = Infix;
priority = 260;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackRightPointingSmallTriangleInfix =
{character = Unicode 0x25B8;
glyph = "▸";
name="black right-pointing small triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackRightPointingTriangleInfix =
{character = Unicode 0x25B6;
glyph = "▶";
name="black right-pointing triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackSmallSquareInfix =
{character = Unicode 0x25AA;
glyph = "▪";
name="black small square";
form = Infix;
priority = 260;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackSquareInfix =
{character = Unicode 0x25A0;
glyph = "■";
name="black square";
form = Infix;
priority = 260;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let blackUpPointingSmallTriangleInfix =
{character = Unicode 0x25B4;
glyph = "▴";
name="black up-pointing small triangle";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackUpPointingTriangleInfix =
{character = Unicode 0x25B2;
glyph = "▲";
name="black up-pointing triangle";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let blackVerticalRectangleInfix =
{character = Unicode 0x25AE;
glyph = "▮";
name="black vertical rectangle";
form = Infix;
priority = 260;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let bottomArcAnticlockwiseArrowInfix =
{character = Unicode 0x293B;
glyph = "⤻";
name="bottom arc anticlockwise arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[Accent true]}
let bottomCurlyBracketPostfix =
{character = Unicode 0x23DF;
glyph = "⏟";
name="bottom curly bracket";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let bottomParenthesisPostfix =
{character = Unicode 0x23DD;
glyph = "⏝";
name="bottom parenthesis";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let bottomSquareBracketPostfix =
{character = Unicode 0x23B5;
glyph = "⎵";
name="bottom square bracket";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let bottomTortoiseShellBracketPostfix =
{character = Unicode 0x23E1;
glyph = "⏡";
name="bottom tortoise shell bracket";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let bowtieInfix =
{character = Unicode 0x22C8;
glyph = "⋈";
name="bowtie";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let bowtieWithLeftHalfBlackInfix =
{character = Unicode 0x29D1;
glyph = "⧑";
name="bowtie with left half black";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let bowtieWithRightHalfBlackInfix =
{character = Unicode 0x29D2;
glyph = "⧒";
name="bowtie with right half black";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let brevePostfix =
{character = Unicode 0x2D8;
glyph = "˘";
name="breve";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Accent true]}
let bulletInfix =
{character = Unicode 0x2022;
glyph = "•";
name="bullet";
form = Infix;
priority = 390;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let bulletOperatorInfix =
{character = Unicode 0x2219;
glyph = "∙";
name="bullet operator";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let bullseyeInfix =
{character = Unicode 0x25CE;
glyph = "◎";
name="bullseye";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let caronPostfix =
{character = Unicode 0x2C7;
glyph = "ˇ";
name="caron";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let cedillaPostfix =
{character = Unicode 0xB8;
glyph = "¸";
name="cedilla";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Accent true]}
let circledAnticlockwiseRotatedDivisionSignInfix =
{character = Unicode 0x29BC;
glyph = "⦼";
name="circled anticlockwise-rotated division sign";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledAsteriskOperatorInfix =
{character = Unicode 0x229B;
glyph = "⊛";
name="circled asterisk operator";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledBulletInfix =
{character = Unicode 0x29BF;
glyph = "⦿";
name="circled bullet";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledDashInfix =
{character = Unicode 0x229D;
glyph = "⊝";
name="circled dash";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledDivisionSignInfix =
{character = Unicode 0x2A38;
glyph = "⨸";
name="circled division sign";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledDivisionSlashInfix =
{character = Unicode 0x2298;
glyph = "⊘";
name="circled division slash";
form = Infix;
priority = 300;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledDotOperatorInfix =
{character = Unicode 0x2299;
glyph = "⊙";
name="circled dot operator";
form = Infix;
priority = 710;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledEqualsInfix =
{character = Unicode 0x229C;
glyph = "⊜";
name="circled equals";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledGreaterThanInfix =
{character = Unicode 0x29C1;
glyph = "⧁";
name="circled greater-than";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let circleDividedByHorizontalBarAndTopHalfDividedByVerticalBarInfix =
{character = Unicode 0x29BA;
glyph = "⦺";
name="circle divided by horizontal bar and top half divided by vertical bar";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledLessThanInfix =
{character = Unicode 0x29C0;
glyph = "⧀";
name="circled less-than";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let circledMinusInfix =
{character = Unicode 0x2296;
glyph = "⊖";
name="circled minus";
form = Infix;
priority = 300;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledMultiplicationSignWithCircumflexAccentInfix =
{character = Unicode 0x2A36;
glyph = "⨶";
name="circled multiplication sign with circumflex accent";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledParallelInfix =
{character = Unicode 0x29B7;
glyph = "⦷";
name="circled parallel";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledPerpendicularInfix =
{character = Unicode 0x29B9;
glyph = "⦹";
name="circled perpendicular";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledPlusInfix =
{character = Unicode 0x2295;
glyph = "⊕";
name="circled plus";
form = Infix;
priority = 300;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledReverseSolidusInfix =
{character = Unicode 0x29B8;
glyph = "⦸";
name="circled reverse solidus";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledRingOperatorInfix =
{character = Unicode 0x229A;
glyph = "⊚";
name="circled ring operator";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledTimesInfix =
{character = Unicode 0x2297;
glyph = "⊗";
name="circled times";
form = Infix;
priority = 410;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledVerticalBarInfix =
{character = Unicode 0x29B6;
glyph = "⦶";
name="circled vertical bar";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circledWhiteBulletInfix =
{character = Unicode 0x29BE;
glyph = "⦾";
name="circled white bullet";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circleWithHorizontalBarInfix =
{character = Unicode 0x29B5;
glyph = "⦵";
name="circle with horizontal bar";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let circleWithSmallCircleToTheRightInfix =
{character = Unicode 0x29C2;
glyph = "⧂";
name="circle with small circle to the right";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let circleWithSuperimposedXInfix =
{character = Unicode 0x29BB;
glyph = "⦻";
name="circle with superimposed x";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circleWithTwoHorizontalStrokesToTheRightInfix =
{character = Unicode 0x29C3;
glyph = "⧃";
name="circle with two horizontal strokes to the right";
form = Infix;
priority = 265;
lspace = NamedLength ThinMathSpace;
rspace = NamedLength ThinMathSpace;
properties=[]}
let circleWithVerticalFillInfix =
{character = Unicode 0x25CD;
glyph = "◍";
name="circle with vertical fill";
form = Infix;
priority = 260;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let circulationFunctionPrefix =
{character = Unicode 0x2A10;
glyph = "⨐";
name="circulation function";
form = Prefix;
priority = 310;
lspace = NamedLength VeryVeryThinMathSpace;
rspace = NamedLength VeryThinMathSpace;
properties=[LargeOp true; MovableLimits true; Symmetric true]}
let circumflexAccentInfix =
{character = Char '^';
glyph = "^";
name="circumflex accent";
form = Infix;
priority = 780;
lspace = NamedLength VeryVeryThinMathSpace;
rspace = NamedLength VeryVeryThinMathSpace;
properties=[]}
let circumflexAccentPostfix =
{character = Char '^';
glyph = "^";
name="circumflex accent";
form = Postfix;
priority = 880;
lspace= EM 0.<em>;
rspace= EM 0.<em>;
properties=[Stretchy true; Accent true]}
let clockwiseClosedCircleArrowInfix =
{character = Unicode 0x2941;
glyph = "⥁";
name="clockwise closed circle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let clockwiseContourIntegralPrefix =
{character = Unicode 0x2232;
glyph = "∲";
name="clockwise contour integral";
form = Prefix;
priority = 310;
lspace= EM 0.<em>;
rspace = NamedLength VeryVeryThinMathSpace;
properties=[LargeOp true; Symmetric true]}
let clockwiseIntegralPrefix =
{character = Unicode 0x2231;
glyph = "∱";
name="clockwise integral";
form = Prefix;
priority = 310;
lspace= EM 0.<em>;
rspace = NamedLength VeryVeryThinMathSpace;
properties=[LargeOp true; Symmetric true]}
let clockwiseOpenCircleArrowInfix =
{character = Unicode 0x21BB;
glyph = "↻";
name="clockwise open circle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let clockwiseTopSemicircleArrowInfix =
{character = Unicode 0x21B7;
glyph = "↷";
name="clockwise top semicircle arrow";
form = Infix;
priority = 270;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[Accent true]}
let closedIntersectionWithSerifsInfix =
{character = Unicode 0x2A4D;
glyph = "⩍";
name="closed intersection with serifs";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let closedSubsetInfix =
{character = Unicode 0x2ACF;
glyph = "⫏";
name="closed subset";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let closedSubsetOrEqualToInfix =
{character = Unicode 0x2AD1;
glyph = "⫑";
name="closed subset or equal to";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let closedSupersetInfix =
{character = Unicode 0x2AD0;
glyph = "⫐";
name="closed superset";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let closedSupersetOrEqualToInfix =
{character = Unicode 0x2AD2;
glyph = "⫒";
name="closed superset or equal to";
form = Infix;
priority = 265;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let closedUnionWithSerifsAndSmashProductInfix =
{character = Unicode 0x2A50;
glyph = "⩐";
name="closed union with serifs and smash product";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let closedUnionWithSerifsInfix =
{character = Unicode 0x2A4C;
glyph = "⩌";
name="closed union with serifs";
form = Infix;
priority = 265;
lspace = NamedLength MediumMathSpace;
rspace = NamedLength MediumMathSpace;
properties=[]}
let colonEqualsInfix =
{character = Unicode 0x2254;
glyph = "≔";
name="colon equals";
form = Infix;
priority = 260;
lspace = NamedLength ThickMathSpace;
rspace = NamedLength ThickMathSpace;
properties=[]}
let colonInfix =
{character = Char ':';
glyph = ":";
name="colon";
form = Infix;
priority = 100;