-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex_definition_F.html
3084 lines (3076 loc) · 523 KB
/
index_definition_F.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="coqdoc.css" rel="stylesheet" type="text/css" />
<title>mathcomp.ssreflect.tuple</title>
</head>
<body>
<div id="page">
<div id="header">
</div>
<div id="main">
<table>
<tr>
<td>Global Index</td>
<td><a href="index_global_A.html">A</a></td>
<td><a href="index_global_B.html">B</a></td>
<td><a href="index_global_C.html">C</a></td>
<td><a href="index_global_D.html">D</a></td>
<td><a href="index_global_E.html">E</a></td>
<td><a href="index_global_F.html">F</a></td>
<td><a href="index_global_G.html">G</a></td>
<td><a href="index_global_H.html">H</a></td>
<td><a href="index_global_I.html">I</a></td>
<td><a href="index_global_J.html">J</a></td>
<td><a href="index_global_K.html">K</a></td>
<td><a href="index_global_L.html">L</a></td>
<td><a href="index_global_M.html">M</a></td>
<td><a href="index_global_N.html">N</a></td>
<td><a href="index_global_O.html">O</a></td>
<td><a href="index_global_P.html">P</a></td>
<td><a href="index_global_Q.html">Q</a></td>
<td><a href="index_global_R.html">R</a></td>
<td><a href="index_global_S.html">S</a></td>
<td><a href="index_global_T.html">T</a></td>
<td><a href="index_global_U.html">U</a></td>
<td><a href="index_global_V.html">V</a></td>
<td><a href="index_global_W.html">W</a></td>
<td><a href="index_global_X.html">X</a></td>
<td>Y</td>
<td><a href="index_global_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_global_*.html">other</a></td>
<td>(54001 entries)</td>
</tr>
<tr>
<td>Notation Index</td>
<td><a href="index_notation_A.html">A</a></td>
<td><a href="index_notation_B.html">B</a></td>
<td><a href="index_notation_C.html">C</a></td>
<td><a href="index_notation_D.html">D</a></td>
<td><a href="index_notation_E.html">E</a></td>
<td><a href="index_notation_F.html">F</a></td>
<td><a href="index_notation_G.html">G</a></td>
<td><a href="index_notation_H.html">H</a></td>
<td><a href="index_notation_I.html">I</a></td>
<td>J</td>
<td><a href="index_notation_K.html">K</a></td>
<td><a href="index_notation_L.html">L</a></td>
<td><a href="index_notation_M.html">M</a></td>
<td><a href="index_notation_N.html">N</a></td>
<td><a href="index_notation_O.html">O</a></td>
<td><a href="index_notation_P.html">P</a></td>
<td><a href="index_notation_Q.html">Q</a></td>
<td><a href="index_notation_R.html">R</a></td>
<td><a href="index_notation_S.html">S</a></td>
<td>T</td>
<td><a href="index_notation_U.html">U</a></td>
<td><a href="index_notation_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_notation_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_notation_*.html">other</a></td>
<td>(1931 entries)</td>
</tr>
<tr>
<td>Module Index</td>
<td><a href="index_module_A.html">A</a></td>
<td><a href="index_module_B.html">B</a></td>
<td><a href="index_module_C.html">C</a></td>
<td><a href="index_module_D.html">D</a></td>
<td><a href="index_module_E.html">E</a></td>
<td><a href="index_module_F.html">F</a></td>
<td><a href="index_module_G.html">G</a></td>
<td><a href="index_module_H.html">H</a></td>
<td><a href="index_module_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_module_L.html">L</a></td>
<td><a href="index_module_M.html">M</a></td>
<td><a href="index_module_N.html">N</a></td>
<td><a href="index_module_O.html">O</a></td>
<td><a href="index_module_P.html">P</a></td>
<td><a href="index_module_Q.html">Q</a></td>
<td><a href="index_module_R.html">R</a></td>
<td><a href="index_module_S.html">S</a></td>
<td><a href="index_module_T.html">T</a></td>
<td><a href="index_module_U.html">U</a></td>
<td><a href="index_module_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_module_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(1658 entries)</td>
</tr>
<tr>
<td>Variable Index</td>
<td><a href="index_variable_A.html">A</a></td>
<td><a href="index_variable_B.html">B</a></td>
<td><a href="index_variable_C.html">C</a></td>
<td><a href="index_variable_D.html">D</a></td>
<td><a href="index_variable_E.html">E</a></td>
<td><a href="index_variable_F.html">F</a></td>
<td><a href="index_variable_G.html">G</a></td>
<td><a href="index_variable_H.html">H</a></td>
<td><a href="index_variable_I.html">I</a></td>
<td>J</td>
<td><a href="index_variable_K.html">K</a></td>
<td><a href="index_variable_L.html">L</a></td>
<td><a href="index_variable_M.html">M</a></td>
<td><a href="index_variable_N.html">N</a></td>
<td><a href="index_variable_O.html">O</a></td>
<td><a href="index_variable_P.html">P</a></td>
<td><a href="index_variable_Q.html">Q</a></td>
<td><a href="index_variable_R.html">R</a></td>
<td><a href="index_variable_S.html">S</a></td>
<td><a href="index_variable_T.html">T</a></td>
<td><a href="index_variable_U.html">U</a></td>
<td><a href="index_variable_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_variable_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(7199 entries)</td>
</tr>
<tr>
<td>Library Index</td>
<td><a href="index_library_A.html">A</a></td>
<td><a href="index_library_B.html">B</a></td>
<td><a href="index_library_C.html">C</a></td>
<td><a href="index_library_D.html">D</a></td>
<td><a href="index_library_E.html">E</a></td>
<td><a href="index_library_F.html">F</a></td>
<td><a href="index_library_G.html">G</a></td>
<td><a href="index_library_H.html">H</a></td>
<td><a href="index_library_I.html">I</a></td>
<td><a href="index_library_J.html">J</a></td>
<td>K</td>
<td>L</td>
<td><a href="index_library_M.html">M</a></td>
<td><a href="index_library_N.html">N</a></td>
<td><a href="index_library_O.html">O</a></td>
<td><a href="index_library_P.html">P</a></td>
<td><a href="index_library_Q.html">Q</a></td>
<td><a href="index_library_R.html">R</a></td>
<td><a href="index_library_S.html">S</a></td>
<td><a href="index_library_T.html">T</a></td>
<td>U</td>
<td><a href="index_library_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_library_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(97 entries)</td>
</tr>
<tr>
<td>Lemma Index</td>
<td><a href="index_lemma_A.html">A</a></td>
<td><a href="index_lemma_B.html">B</a></td>
<td><a href="index_lemma_C.html">C</a></td>
<td><a href="index_lemma_D.html">D</a></td>
<td><a href="index_lemma_E.html">E</a></td>
<td><a href="index_lemma_F.html">F</a></td>
<td><a href="index_lemma_G.html">G</a></td>
<td><a href="index_lemma_H.html">H</a></td>
<td><a href="index_lemma_I.html">I</a></td>
<td><a href="index_lemma_J.html">J</a></td>
<td><a href="index_lemma_K.html">K</a></td>
<td><a href="index_lemma_L.html">L</a></td>
<td><a href="index_lemma_M.html">M</a></td>
<td><a href="index_lemma_N.html">N</a></td>
<td><a href="index_lemma_O.html">O</a></td>
<td><a href="index_lemma_P.html">P</a></td>
<td><a href="index_lemma_Q.html">Q</a></td>
<td><a href="index_lemma_R.html">R</a></td>
<td><a href="index_lemma_S.html">S</a></td>
<td><a href="index_lemma_T.html">T</a></td>
<td><a href="index_lemma_U.html">U</a></td>
<td><a href="index_lemma_V.html">V</a></td>
<td><a href="index_lemma_W.html">W</a></td>
<td><a href="index_lemma_X.html">X</a></td>
<td>Y</td>
<td><a href="index_lemma_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(15214 entries)</td>
</tr>
<tr>
<td>Axiom Index</td>
<td><a href="index_axiom_A.html">A</a></td>
<td><a href="index_axiom_B.html">B</a></td>
<td><a href="index_axiom_C.html">C</a></td>
<td><a href="index_axiom_D.html">D</a></td>
<td><a href="index_axiom_E.html">E</a></td>
<td><a href="index_axiom_F.html">F</a></td>
<td><a href="index_axiom_G.html">G</a></td>
<td>H</td>
<td><a href="index_axiom_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td>L</td>
<td><a href="index_axiom_M.html">M</a></td>
<td>N</td>
<td>O</td>
<td><a href="index_axiom_P.html">P</a></td>
<td><a href="index_axiom_Q.html">Q</a></td>
<td><a href="index_axiom_R.html">R</a></td>
<td><a href="index_axiom_S.html">S</a></td>
<td>T</td>
<td>U</td>
<td>V</td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td>Z</td>
<td>_</td>
<td>other</td>
<td>(75 entries)</td>
</tr>
<tr>
<td>Constructor Index</td>
<td><a href="index_constructor_A.html">A</a></td>
<td><a href="index_constructor_B.html">B</a></td>
<td><a href="index_constructor_C.html">C</a></td>
<td><a href="index_constructor_D.html">D</a></td>
<td><a href="index_constructor_E.html">E</a></td>
<td><a href="index_constructor_F.html">F</a></td>
<td><a href="index_constructor_G.html">G</a></td>
<td><a href="index_constructor_H.html">H</a></td>
<td><a href="index_constructor_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_constructor_L.html">L</a></td>
<td><a href="index_constructor_M.html">M</a></td>
<td><a href="index_constructor_N.html">N</a></td>
<td><a href="index_constructor_O.html">O</a></td>
<td><a href="index_constructor_P.html">P</a></td>
<td><a href="index_constructor_Q.html">Q</a></td>
<td><a href="index_constructor_R.html">R</a></td>
<td><a href="index_constructor_S.html">S</a></td>
<td><a href="index_constructor_T.html">T</a></td>
<td><a href="index_constructor_U.html">U</a></td>
<td><a href="index_constructor_V.html">V</a></td>
<td>W</td>
<td><a href="index_constructor_X.html">X</a></td>
<td>Y</td>
<td><a href="index_constructor_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(224 entries)</td>
</tr>
<tr>
<td>Inductive Index</td>
<td><a href="index_inductive_A.html">A</a></td>
<td><a href="index_inductive_B.html">B</a></td>
<td><a href="index_inductive_C.html">C</a></td>
<td><a href="index_inductive_D.html">D</a></td>
<td><a href="index_inductive_E.html">E</a></td>
<td><a href="index_inductive_F.html">F</a></td>
<td><a href="index_inductive_G.html">G</a></td>
<td><a href="index_inductive_H.html">H</a></td>
<td><a href="index_inductive_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_inductive_L.html">L</a></td>
<td><a href="index_inductive_M.html">M</a></td>
<td><a href="index_inductive_N.html">N</a></td>
<td><a href="index_inductive_O.html">O</a></td>
<td><a href="index_inductive_P.html">P</a></td>
<td>Q</td>
<td><a href="index_inductive_R.html">R</a></td>
<td><a href="index_inductive_S.html">S</a></td>
<td><a href="index_inductive_T.html">T</a></td>
<td><a href="index_inductive_U.html">U</a></td>
<td><a href="index_inductive_V.html">V</a></td>
<td>W</td>
<td><a href="index_inductive_X.html">X</a></td>
<td>Y</td>
<td>Z</td>
<td>_</td>
<td>other</td>
<td>(132 entries)</td>
</tr>
<tr>
<td>Projection Index</td>
<td><a href="index_projection_A.html">A</a></td>
<td><a href="index_projection_B.html">B</a></td>
<td><a href="index_projection_C.html">C</a></td>
<td><a href="index_projection_D.html">D</a></td>
<td><a href="index_projection_E.html">E</a></td>
<td><a href="index_projection_F.html">F</a></td>
<td><a href="index_projection_G.html">G</a></td>
<td><a href="index_projection_H.html">H</a></td>
<td><a href="index_projection_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_projection_L.html">L</a></td>
<td><a href="index_projection_M.html">M</a></td>
<td><a href="index_projection_N.html">N</a></td>
<td><a href="index_projection_O.html">O</a></td>
<td><a href="index_projection_P.html">P</a></td>
<td><a href="index_projection_Q.html">Q</a></td>
<td><a href="index_projection_R.html">R</a></td>
<td><a href="index_projection_S.html">S</a></td>
<td><a href="index_projection_T.html">T</a></td>
<td><a href="index_projection_U.html">U</a></td>
<td><a href="index_projection_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_projection_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(2371 entries)</td>
</tr>
<tr>
<td>Section Index</td>
<td><a href="index_section_A.html">A</a></td>
<td><a href="index_section_B.html">B</a></td>
<td><a href="index_section_C.html">C</a></td>
<td><a href="index_section_D.html">D</a></td>
<td><a href="index_section_E.html">E</a></td>
<td><a href="index_section_F.html">F</a></td>
<td><a href="index_section_G.html">G</a></td>
<td><a href="index_section_H.html">H</a></td>
<td><a href="index_section_I.html">I</a></td>
<td>J</td>
<td><a href="index_section_K.html">K</a></td>
<td><a href="index_section_L.html">L</a></td>
<td><a href="index_section_M.html">M</a></td>
<td><a href="index_section_N.html">N</a></td>
<td><a href="index_section_O.html">O</a></td>
<td><a href="index_section_P.html">P</a></td>
<td><a href="index_section_Q.html">Q</a></td>
<td><a href="index_section_R.html">R</a></td>
<td><a href="index_section_S.html">S</a></td>
<td><a href="index_section_T.html">T</a></td>
<td><a href="index_section_U.html">U</a></td>
<td><a href="index_section_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_section_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(2266 entries)</td>
</tr>
<tr>
<td>Abbreviation Index</td>
<td><a href="index_abbreviation_A.html">A</a></td>
<td><a href="index_abbreviation_B.html">B</a></td>
<td><a href="index_abbreviation_C.html">C</a></td>
<td><a href="index_abbreviation_D.html">D</a></td>
<td><a href="index_abbreviation_E.html">E</a></td>
<td><a href="index_abbreviation_F.html">F</a></td>
<td><a href="index_abbreviation_G.html">G</a></td>
<td><a href="index_abbreviation_H.html">H</a></td>
<td><a href="index_abbreviation_I.html">I</a></td>
<td><a href="index_abbreviation_J.html">J</a></td>
<td><a href="index_abbreviation_K.html">K</a></td>
<td><a href="index_abbreviation_L.html">L</a></td>
<td><a href="index_abbreviation_M.html">M</a></td>
<td><a href="index_abbreviation_N.html">N</a></td>
<td><a href="index_abbreviation_O.html">O</a></td>
<td><a href="index_abbreviation_P.html">P</a></td>
<td><a href="index_abbreviation_Q.html">Q</a></td>
<td><a href="index_abbreviation_R.html">R</a></td>
<td><a href="index_abbreviation_S.html">S</a></td>
<td><a href="index_abbreviation_T.html">T</a></td>
<td><a href="index_abbreviation_U.html">U</a></td>
<td><a href="index_abbreviation_V.html">V</a></td>
<td><a href="index_abbreviation_W.html">W</a></td>
<td><a href="index_abbreviation_X.html">X</a></td>
<td>Y</td>
<td><a href="index_abbreviation_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(732 entries)</td>
</tr>
<tr>
<td>Definition Index</td>
<td><a href="index_definition_A.html">A</a></td>
<td><a href="index_definition_B.html">B</a></td>
<td><a href="index_definition_C.html">C</a></td>
<td><a href="index_definition_D.html">D</a></td>
<td><a href="index_definition_E.html">E</a></td>
<td><a href="index_definition_F.html">F</a></td>
<td><a href="index_definition_G.html">G</a></td>
<td><a href="index_definition_H.html">H</a></td>
<td><a href="index_definition_I.html">I</a></td>
<td><a href="index_definition_J.html">J</a></td>
<td><a href="index_definition_K.html">K</a></td>
<td><a href="index_definition_L.html">L</a></td>
<td><a href="index_definition_M.html">M</a></td>
<td><a href="index_definition_N.html">N</a></td>
<td><a href="index_definition_O.html">O</a></td>
<td><a href="index_definition_P.html">P</a></td>
<td><a href="index_definition_Q.html">Q</a></td>
<td><a href="index_definition_R.html">R</a></td>
<td><a href="index_definition_S.html">S</a></td>
<td><a href="index_definition_T.html">T</a></td>
<td><a href="index_definition_U.html">U</a></td>
<td><a href="index_definition_V.html">V</a></td>
<td><a href="index_definition_W.html">W</a></td>
<td><a href="index_definition_X.html">X</a></td>
<td>Y</td>
<td><a href="index_definition_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(21455 entries)</td>
</tr>
<tr>
<td>Record Index</td>
<td><a href="index_record_A.html">A</a></td>
<td><a href="index_record_B.html">B</a></td>
<td><a href="index_record_C.html">C</a></td>
<td><a href="index_record_D.html">D</a></td>
<td><a href="index_record_E.html">E</a></td>
<td><a href="index_record_F.html">F</a></td>
<td><a href="index_record_G.html">G</a></td>
<td><a href="index_record_H.html">H</a></td>
<td><a href="index_record_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_record_L.html">L</a></td>
<td><a href="index_record_M.html">M</a></td>
<td><a href="index_record_N.html">N</a></td>
<td><a href="index_record_O.html">O</a></td>
<td><a href="index_record_P.html">P</a></td>
<td><a href="index_record_Q.html">Q</a></td>
<td><a href="index_record_R.html">R</a></td>
<td><a href="index_record_S.html">S</a></td>
<td><a href="index_record_T.html">T</a></td>
<td><a href="index_record_U.html">U</a></td>
<td><a href="index_record_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_record_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(647 entries)</td>
</tr>
</table>
<hr/><a id="definition_F"></a><h2>F (definition)</h2>
<a href="mathcomp.fingroup.morphism.html#factm">factm</a> [in <a href="mathcomp.fingroup.morphism.html">mathcomp.fingroup.morphism</a>]<br/>
<a href="mathcomp.character.mxrepresentation.html#factmod_repr">factmod_repr</a> [in <a href="mathcomp.character.mxrepresentation.html">mathcomp.character.mxrepresentation</a>]<br/>
<a href="mathcomp.character.mxrepresentation.html#factmod_mx">factmod_mx</a> [in <a href="mathcomp.character.mxrepresentation.html">mathcomp.character.mxrepresentation</a>]<br/>
<a href="mathcomp.fingroup.morphism.html#factm_morphism">factm_morphism</a> [in <a href="mathcomp.fingroup.morphism.html">mathcomp.fingroup.morphism</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#factorial">factorial</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#fact_rec">fact_rec</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.field.fieldext.html#Fadjoin_poly">Fadjoin_poly</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#Fadjoin_sum">Fadjoin_sum</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.fingroup.action.html#faithful">faithful</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.field.fieldext.html#falgebra_prodv__canonical__Monoid_ComLaw">falgebra_prodv__canonical__Monoid_ComLaw</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#falgebra_prodv__canonical__SemiGroup_ComLaw">falgebra_prodv__canonical__SemiGroup_ComLaw</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Ring_hasMulInverse__180">falgebra_Falgebra__to__GRing_Ring_hasMulInverse__180</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Lalgebra_isAlgebra__178">falgebra_Falgebra__to__GRing_Lalgebra_isAlgebra__178</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Lmodule_isLalgebra__176">falgebra_Falgebra__to__GRing_Lmodule_isLalgebra__176</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__vector_Lmodule_hasFinDim__174">falgebra_Falgebra__to__vector_Lmodule_hasFinDim__174</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Zmodule_isLmodule__172">falgebra_Falgebra__to__GRing_Zmodule_isLmodule__172</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Nmodule_isZmodule__170">falgebra_Falgebra__to__GRing_Nmodule_isZmodule__170</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Nmodule_isSemiRing__168">falgebra_Falgebra__to__GRing_Nmodule_isSemiRing__168</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__eqtype_hasDecEq__166">falgebra_Falgebra__to__eqtype_hasDecEq__166</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__choice_hasChoice__164">falgebra_Falgebra__to__choice_hasChoice__164</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_isNmodule__162">falgebra_Falgebra__to__GRing_isNmodule__162</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Ring_hasMulInverse">falgebra_Falgebra__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Lalgebra_isAlgebra">falgebra_Falgebra__to__GRing_Lalgebra_isAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Lmodule_isLalgebra">falgebra_Falgebra__to__GRing_Lmodule_isLalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__vector_Lmodule_hasFinDim">falgebra_Falgebra__to__vector_Lmodule_hasFinDim</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Zmodule_isLmodule">falgebra_Falgebra__to__GRing_Zmodule_isLmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Nmodule_isZmodule">falgebra_Falgebra__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_Nmodule_isSemiRing">falgebra_Falgebra__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__eqtype_hasDecEq">falgebra_Falgebra__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__choice_hasChoice">falgebra_Falgebra__to__choice_hasChoice</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#falgebra_Falgebra__to__GRing_isNmodule">falgebra_Falgebra__to__GRing_isNmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_ahom__canonical__choice_SubChoice">falgebra_ahom__canonical__choice_SubChoice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_ahom__canonical__choice_Choice">falgebra_ahom__canonical__choice_Choice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_ahom__canonical__eqtype_SubEquality">falgebra_ahom__canonical__eqtype_SubEquality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_ahom__canonical__eqtype_Equality">falgebra_ahom__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_ahom__canonical__eqtype_SubType">falgebra_ahom__canonical__eqtype_SubType</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_Algebra_isFalgebra__to__GRing_Ring_hasMulInverse__76">falgebra_Algebra_isFalgebra__to__GRing_Ring_hasMulInverse__76</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_aspace__canonical__choice_SubChoice">falgebra_aspace__canonical__choice_SubChoice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_aspace__canonical__eqtype_SubEquality">falgebra_aspace__canonical__eqtype_SubEquality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_aspace__canonical__choice_Choice">falgebra_aspace__canonical__choice_Choice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_aspace__canonical__eqtype_Equality">falgebra_aspace__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_aspace__canonical__eqtype_SubType">falgebra_aspace__canonical__eqtype_SubType</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_prodv__canonical__Monoid_Law">falgebra_prodv__canonical__Monoid_Law</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_prodv__canonical__SemiGroup_Law">falgebra_prodv__canonical__SemiGroup_Law</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_prodv__canonical__Monoid_MulLaw">falgebra_prodv__canonical__Monoid_MulLaw</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amulr__canonical__GRing_LRMorphism">falgebra_amulr__canonical__GRing_LRMorphism</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amulr__canonical__GRing_RMorphism">falgebra_amulr__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amulr__canonical__GRing_Linear">falgebra_amulr__canonical__GRing_Linear</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amulr__canonical__GRing_Additive">falgebra_amulr__canonical__GRing_Additive</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amull__canonical__GRing_Linear">falgebra_amull__canonical__GRing_Linear</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_amull__canonical__GRing_Additive">falgebra_amull__canonical__GRing_Additive</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#falgebra_Algebra_isFalgebra__to__GRing_Ring_hasMulInverse">falgebra_Algebra_isFalgebra__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_UnitAlgebra">Falgebra.Exports.falgebra_Falgebra__to__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_UnitAlgebra_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_UnitAlgebra_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Algebra">Falgebra.Exports.falgebra_Falgebra__to__GRing_Algebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Algebra_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Algebra_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_UnitRing">Falgebra.Exports.falgebra_Falgebra__to__GRing_UnitRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_UnitRing_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_UnitRing_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Lalgebra">Falgebra.Exports.falgebra_Falgebra__to__GRing_Lalgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Lalgebra_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Lalgebra_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Ring">Falgebra.Exports.falgebra_Falgebra__to__GRing_Ring</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Ring_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Ring_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__vector_Vector">Falgebra.Exports.falgebra_Falgebra__to__vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__vector_Vector_class">Falgebra.Exports.falgebra_Falgebra_class__to__vector_Vector_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Lmodule">Falgebra.Exports.falgebra_Falgebra__to__GRing_Lmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Lmodule_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Lmodule_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Zmodule">Falgebra.Exports.falgebra_Falgebra__to__GRing_Zmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Zmodule_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Zmodule_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_SemiRing">Falgebra.Exports.falgebra_Falgebra__to__GRing_SemiRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_SemiRing_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_SemiRing_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__GRing_Nmodule">Falgebra.Exports.falgebra_Falgebra__to__GRing_Nmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Nmodule_class">Falgebra.Exports.falgebra_Falgebra_class__to__GRing_Nmodule_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__choice_Choice">Falgebra.Exports.falgebra_Falgebra__to__choice_Choice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__choice_Choice_class">Falgebra.Exports.falgebra_Falgebra_class__to__choice_Choice_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra__to__eqtype_Equality">Falgebra.Exports.falgebra_Falgebra__to__eqtype_Equality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.falgebra_Falgebra_class__to__eqtype_Equality_class">Falgebra.Exports.falgebra_Falgebra_class__to__eqtype_Equality_class</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_UnitAlgebra_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_UnitAlgebra_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Algebra_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Algebra_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_UnitRing_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_UnitRing_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Lalgebra_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Lalgebra_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Ring_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_Ring_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.Exports.join_falgebra_Falgebra_between_GRing_SemiRing_and_vector_Vector">Falgebra.Exports.join_falgebra_Falgebra_between_GRing_SemiRing_and_vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.pack_">Falgebra.pack_</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.phant_on_">Falgebra.phant_on_</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Falgebra.phant_clone">Falgebra.phant_clone</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_Lalgebra_isAlgebra">FalgLfun.GRing_Algebra__to__GRing_Lalgebra_isAlgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_Lmodule_isLalgebra">FalgLfun.GRing_Algebra__to__GRing_Lmodule_isLalgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_Zmodule_isLmodule">FalgLfun.GRing_Algebra__to__GRing_Zmodule_isLmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_Nmodule_isZmodule">FalgLfun.GRing_Algebra__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_Nmodule_isSemiRing">FalgLfun.GRing_Algebra__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__eqtype_hasDecEq">FalgLfun.GRing_Algebra__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__choice_hasChoice">FalgLfun.GRing_Algebra__to__choice_hasChoice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.GRing_Algebra__to__GRing_isNmodule">FalgLfun.GRing_Algebra__to__GRing_isNmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.HB_unnamed_factory_32">FalgLfun.HB_unnamed_factory_32</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.HB_unnamed_mixin_31">FalgLfun.HB_unnamed_mixin_31</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.HB_unnamed_mixin_30">FalgLfun.HB_unnamed_mixin_30</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.HB_unnamed_mixin_29">FalgLfun.HB_unnamed_mixin_29</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.HB_unnamed_factory_20">FalgLfun.HB_unnamed_factory_20</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.lfun_invr">FalgLfun.lfun_invr</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__falgebra_Falgebra">FalgLfun.vector_hom__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_UnitAlgebra">FalgLfun.vector_hom__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_UnitRing">FalgLfun.vector_hom__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_Algebra">FalgLfun.vector_hom__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_Lalgebra">FalgLfun.vector_hom__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_Ring">FalgLfun.vector_hom__canonical__GRing_Ring</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#FalgLfun.vector_hom__canonical__GRing_SemiRing">FalgLfun.vector_hom__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.ssreflect.binomial.html#falling_factorial">falling_factorial</a> [in <a href="mathcomp.ssreflect.binomial.html">mathcomp.ssreflect.binomial</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#family_mem">family_mem</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.binomial.html#ffact_rec">ffact_rec</a> [in <a href="mathcomp.ssreflect.binomial.html">mathcomp.ssreflect.binomial</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#ffun_on_mem">ffun_on_mem</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.character.classfun.html#ffun_cfInd">ffun_cfInd</a> [in <a href="mathcomp.character.classfun.html">mathcomp.character.classfun</a>]<br/>
<a href="mathcomp.character.classfun.html#ffun_Quo">ffun_Quo</a> [in <a href="mathcomp.character.classfun.html">mathcomp.character.classfun</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_scale">ffun_scale</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_ring">ffun_ring</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_mul">ffun_mul</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_one">ffun_one</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_opp">ffun_opp</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_add">ffun_add</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#ffun_zero">ffun_zero</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#fgraph">fgraph</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.field.galois.html#fieldext_fieldOver__canonical__galois_SplittingField">fieldext_fieldOver__canonical__galois_SplittingField</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.phant_axioms">FieldExt_isNormalSplittingField.phant_axioms</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.phant_Build">FieldExt_isNormalSplittingField.phant_Build</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__fieldext_FieldExt">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComUnitAlgebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComAlgebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__falgebra_Falgebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_UnitAlgebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Algebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Lalgebra">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__vector_Vector">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__vector_Vector</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Lmodule">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Field">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Field</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_IntegralDomain">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComUnitRing">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_UnitRing">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComRing">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Ring">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Ring</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Zmodule">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComSemiRing">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_SemiRing">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Nmodule">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__choice_Choice">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__choice_Choice</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__eqtype_Equality">FieldExt_isNormalSplittingField.FieldExt_isNormalSplittingField_L__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.identity_builder">FieldExt_isSplittingField.identity_builder</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.phant_axioms">FieldExt_isSplittingField.phant_axioms</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.phant_Build">FieldExt_isSplittingField.phant_Build</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__fieldext_FieldExt">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComUnitAlgebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComAlgebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__falgebra_Falgebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_UnitAlgebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Algebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Lalgebra">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__vector_Vector">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__vector_Vector</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Lmodule">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Field">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Field</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_IntegralDomain">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComUnitRing">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_UnitRing">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComRing">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Ring">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Ring</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Zmodule">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComSemiRing">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_SemiRing">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Nmodule">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__choice_Choice">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__choice_Choice</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__eqtype_Equality">FieldExt_isSplittingField.FieldExt_isSplittingField_L__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_eval__canonical__GRing_LRMorphism">fieldext_subfx_eval__canonical__GRing_LRMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_eval__canonical__GRing_Linear">fieldext_subfx_eval__canonical__GRing_Linear</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_ComUnitAlgebra">fieldext_subFExtend__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_ComAlgebra">fieldext_subFExtend__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_UnitAlgebra">fieldext_subFExtend__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Algebra">fieldext_subFExtend__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Lalgebra">fieldext_subFExtend__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Lmodule">fieldext_subFExtend__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_inj_subfx__canonical__GRing_RMorphism">fieldext_inj_subfx__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_inj_subfx__canonical__GRing_Additive">fieldext_inj_subfx__canonical__GRing_Additive</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_eval__canonical__GRing_RMorphism">fieldext_subfx_eval__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_eval__canonical__GRing_Additive">fieldext_subfx_eval__canonical__GRing_Additive</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_inj__canonical__GRing_RMorphism">fieldext_subfx_inj__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subfx_inj__canonical__GRing_Additive">fieldext_subfx_inj__canonical__GRing_Additive</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Field">fieldext_subFExtend__canonical__GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_IntegralDomain">fieldext_subFExtend__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_ComUnitRing">fieldext_subFExtend__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_UnitRing">fieldext_subFExtend__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_ComRing">fieldext_subFExtend__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_ComSemiRing">fieldext_subFExtend__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Ring">fieldext_subFExtend__canonical__GRing_Ring</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_SemiRing">fieldext_subFExtend__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Zmodule">fieldext_subFExtend__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__GRing_Nmodule">fieldext_subFExtend__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__generic_quotient_EqQuotient">fieldext_subFExtend__canonical__generic_quotient_EqQuotient</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__generic_quotient_Quotient">fieldext_subFExtend__canonical__generic_quotient_Quotient</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__choice_Choice">fieldext_subFExtend__canonical__choice_Choice</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_subFExtend__canonical__eqtype_Equality">fieldext_subFExtend__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__fieldext_FieldExt">fieldext_baseFieldType__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__falgebra_Falgebra">fieldext_baseFieldType__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__vector_Vector">fieldext_baseFieldType__canonical__vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_ComUnitAlgebra">fieldext_baseFieldType__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_ComAlgebra">fieldext_baseFieldType__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_UnitAlgebra">fieldext_baseFieldType__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Algebra">fieldext_baseFieldType__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Lalgebra">fieldext_baseFieldType__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Lmodule">fieldext_baseFieldType__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Field">fieldext_baseFieldType__canonical__GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_IntegralDomain">fieldext_baseFieldType__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_ComUnitRing">fieldext_baseFieldType__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_UnitRing">fieldext_baseFieldType__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_ComRing">fieldext_baseFieldType__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Ring">fieldext_baseFieldType__canonical__GRing_Ring</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Zmodule">fieldext_baseFieldType__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_ComSemiRing">fieldext_baseFieldType__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_SemiRing">fieldext_baseFieldType__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__GRing_Nmodule">fieldext_baseFieldType__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__choice_Choice">fieldext_baseFieldType__canonical__choice_Choice</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_baseFieldType__canonical__eqtype_Equality">fieldext_baseFieldType__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__fieldext_FieldExt">fieldext_fieldOver__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__falgebra_Falgebra">fieldext_fieldOver__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__vector_Vector">fieldext_fieldOver__canonical__vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_ComUnitAlgebra">fieldext_fieldOver__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_ComAlgebra">fieldext_fieldOver__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_UnitAlgebra">fieldext_fieldOver__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Algebra">fieldext_fieldOver__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Lalgebra">fieldext_fieldOver__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Lmodule">fieldext_fieldOver__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Field">fieldext_fieldOver__canonical__GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_IntegralDomain">fieldext_fieldOver__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_ComUnitRing">fieldext_fieldOver__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_UnitRing">fieldext_fieldOver__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_ComRing">fieldext_fieldOver__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Ring">fieldext_fieldOver__canonical__GRing_Ring</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Zmodule">fieldext_fieldOver__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_ComSemiRing">fieldext_fieldOver__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_SemiRing">fieldext_fieldOver__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__GRing_Nmodule">fieldext_fieldOver__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__choice_Choice">fieldext_fieldOver__canonical__choice_Choice</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldOver__canonical__eqtype_Equality">fieldext_fieldOver__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldExt_horner__canonical__GRing_LRMorphism">fieldext_fieldExt_horner__canonical__GRing_LRMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldExt_horner__canonical__GRing_Linear">fieldext_fieldExt_horner__canonical__GRing_Linear</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldExt_horner__canonical__GRing_RMorphism">fieldext_fieldExt_horner__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_fieldExt_horner__canonical__GRing_Additive">fieldext_fieldExt_horner__canonical__GRing_Additive</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldExt_horner">fieldExt_horner</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_Fadjoin_poly__canonical__GRing_Linear">fieldext_Fadjoin_poly__canonical__GRing_Linear</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldext_Fadjoin_poly__canonical__GRing_Additive">fieldext_Fadjoin_poly__canonical__GRing_Additive</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Lalgebra_isAlgebra">fieldext_FieldExt__to__GRing_Lalgebra_isAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Lmodule_isLalgebra">fieldext_FieldExt__to__GRing_Lmodule_isLalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__vector_Lmodule_hasFinDim">fieldext_FieldExt__to__vector_Lmodule_hasFinDim</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Zmodule_isLmodule">fieldext_FieldExt__to__GRing_Zmodule_isLmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_UnitRing_isField">fieldext_FieldExt__to__GRing_UnitRing_isField</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_ComUnitRing_isIntegral">fieldext_FieldExt__to__GRing_ComUnitRing_isIntegral</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Ring_hasMulInverse">fieldext_FieldExt__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Nmodule_isZmodule">fieldext_FieldExt__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_SemiRing_hasCommutativeMul">fieldext_FieldExt__to__GRing_SemiRing_hasCommutativeMul</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_Nmodule_isSemiRing">fieldext_FieldExt__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__eqtype_hasDecEq">fieldext_FieldExt__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__choice_hasChoice">fieldext_FieldExt__to__choice_hasChoice</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fieldext_FieldExt__to__GRing_isNmodule">fieldext_FieldExt__to__GRing_isNmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_ComUnitAlgebra">FieldExt.Exports.fieldext_FieldExt__to__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComUnitAlgebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComUnitAlgebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_ComAlgebra">FieldExt.Exports.fieldext_FieldExt__to__GRing_ComAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComAlgebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComAlgebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Field">FieldExt.Exports.fieldext_FieldExt__to__GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Field_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Field_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_IntegralDomain">FieldExt.Exports.fieldext_FieldExt__to__GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_IntegralDomain_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_IntegralDomain_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_ComUnitRing">FieldExt.Exports.fieldext_FieldExt__to__GRing_ComUnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComUnitRing_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComUnitRing_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_ComRing">FieldExt.Exports.fieldext_FieldExt__to__GRing_ComRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComRing_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComRing_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_ComSemiRing">FieldExt.Exports.fieldext_FieldExt__to__GRing_ComSemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComSemiRing_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_ComSemiRing_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__falgebra_Falgebra">FieldExt.Exports.fieldext_FieldExt__to__falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__falgebra_Falgebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__falgebra_Falgebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_UnitAlgebra">FieldExt.Exports.fieldext_FieldExt__to__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_UnitAlgebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_UnitAlgebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Algebra">FieldExt.Exports.fieldext_FieldExt__to__GRing_Algebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Algebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Algebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_UnitRing">FieldExt.Exports.fieldext_FieldExt__to__GRing_UnitRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_UnitRing_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_UnitRing_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Lalgebra">FieldExt.Exports.fieldext_FieldExt__to__GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Lalgebra_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Lalgebra_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Ring">FieldExt.Exports.fieldext_FieldExt__to__GRing_Ring</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Ring_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Ring_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__vector_Vector">FieldExt.Exports.fieldext_FieldExt__to__vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__vector_Vector_class">FieldExt.Exports.fieldext_FieldExt_class__to__vector_Vector_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Lmodule">FieldExt.Exports.fieldext_FieldExt__to__GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Lmodule_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Lmodule_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Zmodule">FieldExt.Exports.fieldext_FieldExt__to__GRing_Zmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Zmodule_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Zmodule_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_SemiRing">FieldExt.Exports.fieldext_FieldExt__to__GRing_SemiRing</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_SemiRing_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_SemiRing_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__GRing_Nmodule">FieldExt.Exports.fieldext_FieldExt__to__GRing_Nmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Nmodule_class">FieldExt.Exports.fieldext_FieldExt_class__to__GRing_Nmodule_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__choice_Choice">FieldExt.Exports.fieldext_FieldExt__to__choice_Choice</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__choice_Choice_class">FieldExt.Exports.fieldext_FieldExt_class__to__choice_Choice_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt__to__eqtype_Equality">FieldExt.Exports.fieldext_FieldExt__to__eqtype_Equality</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.fieldext_FieldExt_class__to__eqtype_Equality_class">FieldExt.Exports.fieldext_FieldExt_class__to__eqtype_Equality_class</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_GRing_Field">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_GRing_IntegralDomain">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_falgebra_Falgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitAlgebra_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_GRing_Field">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_GRing_IntegralDomain">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_falgebra_Falgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComAlgebra_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_UnitAlgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_Lalgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_Lmodule">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Field_and_GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_UnitAlgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_UnitAlgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_Lalgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_Lalgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_Lmodule">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_IntegralDomain_and_GRing_Lmodule</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitRing_and_falgebra_Falgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitRing_and_falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitRing_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComUnitRing_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComRing_and_falgebra_Falgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComRing_and_falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComRing_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComRing_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComSemiRing_and_falgebra_Falgebra">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComSemiRing_and_falgebra_Falgebra</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComSemiRing_and_vector_Vector">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_ComSemiRing_and_vector_Vector</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_falgebra_Falgebra_and_GRing_Field">FieldExt.Exports.join_fieldext_FieldExt_between_falgebra_Falgebra_and_GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_falgebra_Falgebra_and_GRing_IntegralDomain">FieldExt.Exports.join_fieldext_FieldExt_between_falgebra_Falgebra_and_GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Algebra_and_GRing_Field">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Algebra_and_GRing_Field</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Algebra_and_GRing_IntegralDomain">FieldExt.Exports.join_fieldext_FieldExt_between_GRing_Algebra_and_GRing_IntegralDomain</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.pack_">FieldExt.pack_</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.phant_on_">FieldExt.phant_on_</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#FieldExt.phant_clone">FieldExt.phant_clone</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldOver">fieldOver</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.fieldext.html#fieldOver_scale">fieldOver_scale</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.phant_axioms">Field_isAlgClosed.phant_axioms</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.phant_Build">Field_isAlgClosed.phant_Build</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Field">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Field</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_IntegralDomain">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComUnitRing">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_UnitRing">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComRing">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Ring">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Ring</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Zmodule">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComSemiRing">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_SemiRing">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Nmodule">Field_isAlgClosed.Field_isAlgClosed_F__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__choice_Choice">Field_isAlgClosed.Field_isAlgClosed_F__canonical__choice_Choice</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.field.closed_field.html#Field_isAlgClosed.Field_isAlgClosed_F__canonical__eqtype_Equality">Field_isAlgClosed.Field_isAlgClosed_F__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.closed_field.html">mathcomp.field.closed_field</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#filter">filter</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#find">find</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.fingraph.html#findex">findex</a> [in <a href="mathcomp.ssreflect.fingraph.html">mathcomp.ssreflect.fingraph</a>]<br/>
<a href="mathcomp.field.finfield.html#FinDomainFieldType">FinDomainFieldType</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#FinDomainSplittingFieldType">FinDomainSplittingFieldType</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.ssreflect.choice.html#find_subdef">find_subdef</a> [in <a href="mathcomp.ssreflect.choice.html">mathcomp.ssreflect.choice</a>]<br/>
<a href="mathcomp.field.finfield.html#FinFieldExtType">FinFieldExtType</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__galois_SplittingField">finfield_PrimeCharType__canonical__galois_SplittingField</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Field">finfield_PrimeCharType__canonical__FinRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_Field">finfield_PrimeCharType__canonical__CountRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__fieldext_FieldExt">finfield_PrimeCharType__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_IntegralDomain">finfield_PrimeCharType__canonical__FinRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_IntegralDomain">finfield_PrimeCharType__canonical__CountRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_ComUnitRing">finfield_PrimeCharType__canonical__FinRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_ComUnitRing">finfield_PrimeCharType__canonical__CountRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_ComRing">finfield_PrimeCharType__canonical__FinRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_ComSemiRing">finfield_PrimeCharType__canonical__FinRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_ComRing">finfield_PrimeCharType__canonical__CountRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_ComSemiRing">finfield_PrimeCharType__canonical__CountRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_UnitAlgebra">finfield_PrimeCharType__canonical__FinRing_UnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_UnitRing">finfield_PrimeCharType__canonical__FinRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__falgebra_Falgebra">finfield_PrimeCharType__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_UnitRing">finfield_PrimeCharType__canonical__CountRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__vector_Vector">finfield_PrimeCharType__canonical__vector_Vector</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__fingroup_FinGroup">finfield_PrimeCharType__canonical__fingroup_FinGroup</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__fingroup_BaseFinGroup">finfield_PrimeCharType__canonical__fingroup_BaseFinGroup</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Algebra">finfield_PrimeCharType__canonical__FinRing_Algebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Lalgebra">finfield_PrimeCharType__canonical__FinRing_Lalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Ring">finfield_PrimeCharType__canonical__FinRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Lmodule">finfield_PrimeCharType__canonical__FinRing_Lmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Zmodule">finfield_PrimeCharType__canonical__FinRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_SemiRing">finfield_PrimeCharType__canonical__FinRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__FinRing_Nmodule">finfield_PrimeCharType__canonical__FinRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__fintype_Finite">finfield_PrimeCharType__canonical__fintype_Finite</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_Ring">finfield_PrimeCharType__canonical__CountRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_Zmodule">finfield_PrimeCharType__canonical__CountRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_SemiRing">finfield_PrimeCharType__canonical__CountRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__CountRing_Nmodule">finfield_PrimeCharType__canonical__CountRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__choice_Countable">finfield_PrimeCharType__canonical__choice_Countable</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Field">finfield_PrimeCharType__canonical__GRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_IntegralDomain">finfield_PrimeCharType__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_ComUnitAlgebra">finfield_PrimeCharType__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_ComUnitRing">finfield_PrimeCharType__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_ComAlgebra">finfield_PrimeCharType__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_ComRing">finfield_PrimeCharType__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_ComSemiRing">finfield_PrimeCharType__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_UnitAlgebra">finfield_PrimeCharType__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_UnitRing">finfield_PrimeCharType__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Algebra">finfield_PrimeCharType__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Lalgebra">finfield_PrimeCharType__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Lmodule">finfield_PrimeCharType__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Ring">finfield_PrimeCharType__canonical__GRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Zmodule">finfield_PrimeCharType__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_SemiRing">finfield_PrimeCharType__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__GRing_Nmodule">finfield_PrimeCharType__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__choice_Choice">finfield_PrimeCharType__canonical__choice_Choice</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_PrimeCharType__canonical__eqtype_Equality">finfield_PrimeCharType__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__galois_SplittingField">finfield_finvect_type__canonical__galois_SplittingField</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__fieldext_FieldExt">finfield_finvect_type__canonical__fieldext_FieldExt</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_ComUnitAlgebra">finfield_finvect_type__canonical__GRing_ComUnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_ComAlgebra">finfield_finvect_type__canonical__GRing_ComAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Field">finfield_finvect_type__canonical__FinRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_Field">finfield_finvect_type__canonical__CountRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Field">finfield_finvect_type__canonical__GRing_Field</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_IntegralDomain">finfield_finvect_type__canonical__FinRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_IntegralDomain">finfield_finvect_type__canonical__CountRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_IntegralDomain">finfield_finvect_type__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_ComUnitRing">finfield_finvect_type__canonical__FinRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_ComUnitRing">finfield_finvect_type__canonical__CountRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_ComUnitRing">finfield_finvect_type__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_ComRing">finfield_finvect_type__canonical__FinRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_ComRing">finfield_finvect_type__canonical__CountRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_ComRing">finfield_finvect_type__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_ComSemiRing">finfield_finvect_type__canonical__FinRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_ComSemiRing">finfield_finvect_type__canonical__CountRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_ComSemiRing">finfield_finvect_type__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_UnitAlgebra">finfield_finvect_type__canonical__FinRing_UnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__falgebra_Falgebra">finfield_finvect_type__canonical__falgebra_Falgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_UnitAlgebra">finfield_finvect_type__canonical__GRing_UnitAlgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_UnitRing">finfield_finvect_type__canonical__FinRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_UnitRing">finfield_finvect_type__canonical__CountRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_UnitRing">finfield_finvect_type__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Algebra">finfield_finvect_type__canonical__FinRing_Algebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Algebra">finfield_finvect_type__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Lalgebra">finfield_finvect_type__canonical__FinRing_Lalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Lalgebra">finfield_finvect_type__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Ring">finfield_finvect_type__canonical__FinRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_Ring">finfield_finvect_type__canonical__CountRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Ring">finfield_finvect_type__canonical__GRing_Ring</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_SemiRing">finfield_finvect_type__canonical__FinRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_SemiRing">finfield_finvect_type__canonical__CountRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_SemiRing">finfield_finvect_type__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Lmodule">finfield_finvect_type__canonical__FinRing_Lmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Zmodule">finfield_finvect_type__canonical__FinRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__FinRing_Nmodule">finfield_finvect_type__canonical__FinRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__fintype_Finite">finfield_finvect_type__canonical__fintype_Finite</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_Zmodule">finfield_finvect_type__canonical__CountRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__CountRing_Nmodule">finfield_finvect_type__canonical__CountRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__choice_Countable">finfield_finvect_type__canonical__choice_Countable</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__vector_Vector">finfield_finvect_type__canonical__vector_Vector</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Lmodule">finfield_finvect_type__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Zmodule">finfield_finvect_type__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__GRing_Nmodule">finfield_finvect_type__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__choice_Choice">finfield_finvect_type__canonical__choice_Choice</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finfield_finvect_type__canonical__eqtype_Equality">finfield_finvect_type__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#finField_unit">finField_unit</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#Finfun">Finfun</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_of_tuple">finfun_of_tuple</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_finfun_of__canonical__fintype_Finite">finfun_finfun_of__canonical__fintype_Finite</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_dfinfun_of__canonical__fintype_Finite">finfun_dfinfun_of__canonical__fintype_Finite</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_finfun_of__canonical__choice_Countable">finfun_finfun_of__canonical__choice_Countable</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_dfinfun_of__canonical__choice_Countable">finfun_dfinfun_of__canonical__choice_Countable</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_finfun_of__canonical__choice_Choice">finfun_finfun_of__canonical__choice_Choice</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_dfinfun_of__canonical__choice_Choice">finfun_dfinfun_of__canonical__choice_Choice</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_finfun_of__canonical__eqtype_Equality">finfun_finfun_of__canonical__eqtype_Equality</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_dfinfun_of__canonical__eqtype_Equality">finfun_dfinfun_of__canonical__eqtype_Equality</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_unlock">finfun_unlock</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_unlock_subterm">finfun_unlock_subterm</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_rec">finfun_rec</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_on_sind">finfun_on_sind</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_on_rec">finfun_on_rec</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_on_ind">finfun_on_ind</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun_on_rect">finfun_on_rect</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finset.html#finfun_of_set">finfun_of_set</a> [in <a href="mathcomp.ssreflect.finset.html">mathcomp.ssreflect.finset</a>]<br/>
<a href="mathcomp.fingroup.gproduct.html#finfun_dfinfun_of__canonical__fingroup_FinGroup">finfun_dfinfun_of__canonical__fingroup_FinGroup</a> [in <a href="mathcomp.fingroup.gproduct.html">mathcomp.fingroup.gproduct</a>]<br/>
<a href="mathcomp.fingroup.gproduct.html#finfun_dfinfun_of__canonical__fingroup_BaseFinGroup">finfun_dfinfun_of__canonical__fingroup_BaseFinGroup</a> [in <a href="mathcomp.fingroup.gproduct.html">mathcomp.fingroup.gproduct</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#finfun_finfun_of__canonical__GRing_Lmodule">finfun_finfun_of__canonical__GRing_Lmodule</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#finfun_finfun_of__canonical__GRing_Ring">finfun_finfun_of__canonical__GRing_Ring</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#finfun_finfun_of__canonical__GRing_SemiRing">finfun_finfun_of__canonical__GRing_SemiRing</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#finfun_finfun_of__canonical__GRing_Zmodule">finfun_finfun_of__canonical__GRing_Zmodule</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#finfun_finfun_of__canonical__GRing_Nmodule">finfun_finfun_of__canonical__GRing_Nmodule</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.vector.html#finfun_finfun_of__canonical__vector_Vector">finfun_finfun_of__canonical__vector_Vector</a> [in <a href="mathcomp.algebra.vector.html">mathcomp.algebra.vector</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun.body">finfun.body</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.ssreflect.finfun.html#finfun.unlock">finfun.unlock</a> [in <a href="mathcomp.ssreflect.finfun.html">mathcomp.ssreflect.finfun</a>]<br/>
<a href="mathcomp.solvable.alt.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.solvable.alt.html">mathcomp.solvable.alt</a>]<br/>
<a href="mathcomp.solvable.alt.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.solvable.alt.html">mathcomp.solvable.alt</a>]<br/>
<a href="mathcomp.fingroup.quotient.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.fingroup.quotient.html">mathcomp.fingroup.quotient</a>]<br/>
<a href="mathcomp.fingroup.quotient.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.fingroup.quotient.html">mathcomp.fingroup.quotient</a>]<br/>
<a href="mathcomp.fingroup.perm.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.fingroup.perm.html">mathcomp.fingroup.perm</a>]<br/>
<a href="mathcomp.fingroup.perm.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.fingroup.perm.html">mathcomp.fingroup.perm</a>]<br/>
<a href="mathcomp.algebra.zmodp.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.algebra.zmodp.html">mathcomp.algebra.zmodp</a>]<br/>
<a href="mathcomp.algebra.zmodp.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.algebra.zmodp.html">mathcomp.algebra.zmodp</a>]<br/>
<a href="mathcomp.field.galois.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.algebra.matrix.html#fingroup_FinGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_FinGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.algebra.matrix.html#fingroup_FinGroup__to__fingroup_isMulBaseGroup">fingroup_FinGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.algebra.matrix.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.algebra.matrix.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_joinG__canonical__Monoid_ComLaw">fingroup_joinG__canonical__Monoid_ComLaw</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_joinG__canonical__Monoid_Law">fingroup_joinG__canonical__Monoid_Law</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_joinG__canonical__SemiGroup_ComLaw">fingroup_joinG__canonical__SemiGroup_ComLaw</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_joinG__canonical__SemiGroup_Law">fingroup_joinG__canonical__SemiGroup_Law</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__fingroup_FinGroup">fingroup_subg_of__canonical__fingroup_FinGroup</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__fingroup_BaseFinGroup">fingroup_subg_of__canonical__fingroup_BaseFinGroup</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_isMulGroup__to__fingroup_isMulBaseGroup">fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__fintype_SubFinite">fingroup_subg_of__canonical__fintype_SubFinite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__fintype_Finite">fingroup_subg_of__canonical__fintype_Finite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__choice_SubCountable">fingroup_subg_of__canonical__choice_SubCountable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__choice_SubChoice">fingroup_subg_of__canonical__choice_SubChoice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__eqtype_SubEquality">fingroup_subg_of__canonical__eqtype_SubEquality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__choice_Countable">fingroup_subg_of__canonical__choice_Countable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__choice_Choice">fingroup_subg_of__canonical__choice_Choice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__eqtype_Equality">fingroup_subg_of__canonical__eqtype_Equality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_subg_of__canonical__eqtype_SubType">fingroup_subg_of__canonical__eqtype_SubType</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__fintype_SubFinite">fingroup_group_of__canonical__fintype_SubFinite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__choice_SubCountable">fingroup_group_of__canonical__choice_SubCountable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__choice_SubChoice">fingroup_group_of__canonical__choice_SubChoice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__eqtype_SubEquality">fingroup_group_of__canonical__eqtype_SubEquality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__eqtype_SubType">fingroup_group_of__canonical__eqtype_SubType</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__fintype_Finite">fingroup_group_of__canonical__fintype_Finite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__choice_Countable">fingroup_group_of__canonical__choice_Countable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__choice_Choice">fingroup_group_of__canonical__choice_Choice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_of__canonical__eqtype_Equality">fingroup_group_of__canonical__eqtype_Equality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__fintype_SubFinite">fingroup_group_type__canonical__fintype_SubFinite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__fintype_Finite">fingroup_group_type__canonical__fintype_Finite</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__choice_SubCountable">fingroup_group_type__canonical__choice_SubCountable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__choice_SubChoice">fingroup_group_type__canonical__choice_SubChoice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__eqtype_SubEquality">fingroup_group_type__canonical__eqtype_SubEquality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__choice_Countable">fingroup_group_type__canonical__choice_Countable</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__choice_Choice">fingroup_group_type__canonical__choice_Choice</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__eqtype_Equality">fingroup_group_type__canonical__eqtype_Equality</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#fingroup_group_type__canonical__eqtype_SubType">fingroup_group_type__canonical__eqtype_SubType</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.field.finfield.html#fingroup_FinGroup__to__fingroup_BaseFinGroup_isGroup">fingroup_FinGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fingroup_FinGroup__to__fintype_isFinite">fingroup_FinGroup__to__fintype_isFinite</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fingroup_FinGroup__to__eqtype_hasDecEq">fingroup_FinGroup__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fingroup_FinGroup__to__choice_Choice_isCountable">fingroup_FinGroup__to__choice_Choice_isCountable</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>
<a href="mathcomp.field.finfield.html#fingroup_FinGroup__to__choice_hasChoice">fingroup_FinGroup__to__choice_hasChoice</a> [in <a href="mathcomp.field.finfield.html">mathcomp.field.finfield</a>]<br/>