CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
2
7 Pointers
3
4
5
7.1 Weak pointer objects
6
7
7.1-1 IsContainerForWeakPointers
8
9
IsContainerForWeakPointers( arg )  filter
10
Returns: true or false
11
12
The category for weak pointer objects
13
14
7.1-2 ContainerForWeakPointers
15
16
ContainerForWeakPointers( arg )  function
17
Returns: a list which can store weak pointers
18
19
The constructor for lists of weak pointers.
20
21
7.1-3 UpdateContainerOfWeakPointers
22
23
UpdateContainerOfWeakPointers( arg )  operation
24
25
Updates the weak pointers in a container and deletes the empty ones
26
27
7.1-4 _AddElmWPObj_ForHomalg
28
29
_AddElmWPObj_ForHomalg( arg )  function
30
31
Adds a weak pointer of an objects to a weak pointer list.
32
33
7.1-5 _AddTwoElmWPObj_ForHomalg
34
35
_AddTwoElmWPObj_ForHomalg( arg )  function
36
37
Adds a weak pointer which depends on two objects to a list of weak pointers
38
39
7.1-6 _ElmWPObj_ForHomalg
40
41
_ElmWPObj_ForHomalg( arg1, arg2, arg3 )  operation
42
43
Creates a weak pointer depending on two objects and adds it to the
44
container.
45
46
47
7.2 Pointer objects
48
49
7.2-1 IsContainerForPointers
50
51
IsContainerForPointers( arg )  filter
52
Returns: true or false
53
54
The category for pointer objects
55
56
7.2-2 ContainerForPointers
57
58
ContainerForPointers( arg )  function
59
Returns: a container for pointers
60
61
Creates a container for pointers.
62
63
7.2-3 UpdateContainerOfPointers
64
65
UpdateContainerOfPointers( arg )  operation
66
67
Updates the container of pointers, removes old.
68
69
7.2-4 _AddElmPObj_ForHomalg
70
71
_AddElmPObj_ForHomalg( arg )  function
72
73
Adds a pointer to an object to a container for pointers.
74
75
7.2-5 _AddTwoElmPObj_ForHomalg
76
77
_AddTwoElmPObj_ForHomalg( arg )  function
78
79
Adds a pointer to two objects to a container for pointers
80
81
7.2-6 _ElmPObj_ForHomalg
82
83
_ElmPObj_ForHomalg( arg1, arg2, arg3 )  operation
84
Returns: an object
85
86
Returns an object which a pointer refers to.
87
88
89