Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

""" 

All Documented GAP Functions 

 

This Python module contains all documented GAP functions, they can be 

thought of as the official API of GAP. 

 

EXAMPLES:: 

 

sage: from sage.libs.gap.all_documented_functions import * 

sage: DihedralGroup(8) 

<pc group of size 8 with 3 generators> 

sage: GeneratorsOfGroup(_) 

[ f1, f2, f3 ] 

sage: List(_, Order) 

[ 2, 4, 2 ] 

""" 

 

from sage.libs.gap.libgap import libgap 

from sage.libs.gap.assigned_names import FUNCTIONS as _FUNCTIONS 

 

 

 

for _f in _FUNCTIONS: 

globals()[_f] = libgap.function_factory(_f)