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
|
package TColStd
uses TCollection
is
imported PackedMapOfInteger;
imported MapIteratorOfPackedMapOfInteger;
-- Instantiations de TCollection --
-- ***************************** --
------------------------------------------------------------------------
class HPackedMapOfInteger;
class Array1OfInteger instantiates
Array1 from TCollection (Integer);
class Array1OfReal instantiates
Array1 from TCollection (Real);
class Array1OfCharacter instantiates
Array1 from TCollection (Character);
class Array1OfBoolean instantiates
Array1 from TCollection (Boolean);
class Array1OfAsciiString instantiates
Array1 from TCollection (AsciiString from TCollection);
class Array1OfExtendedString instantiates
Array1 from TCollection (ExtendedString from TCollection);
class Array1OfTransient instantiates
Array1 from TCollection (Transient );
class Array1OfByte instantiates
Array1 from TCollection (Byte);
class HArray1OfInteger instantiates
HArray1 from TCollection (Integer,
Array1OfInteger from TColStd);
class HArray1OfReal instantiates
HArray1 from TCollection (Real,
Array1OfReal from TColStd);
class HArray1OfCharacter instantiates
HArray1 from TCollection (Character,
Array1OfCharacter from TColStd);
class HArray1OfBoolean instantiates
HArray1 from TCollection (Boolean,
Array1OfBoolean from TColStd);
class HArray1OfAsciiString instantiates
HArray1 from TCollection (AsciiString from TCollection,
Array1OfAsciiString from TColStd);
class HArray1OfExtendedString instantiates
HArray1 from TCollection (ExtendedString from TCollection,
Array1OfExtendedString from TColStd);
class HArray1OfTransient instantiates
HArray1 from TCollection (Transient,
Array1OfTransient from TColStd );
class HArray1OfByte instantiates
HArray1 from TCollection (Byte,
Array1OfByte from TColStd);
class Array2OfInteger instantiates
Array2 from TCollection (Integer);
class Array2OfReal instantiates
Array2 from TCollection (Real);
class Array2OfCharacter instantiates
Array2 from TCollection (Character);
class Array2OfBoolean instantiates
Array2 from TCollection (Boolean);
class Array2OfTransient instantiates
Array2 from TCollection (Transient);
class HArray2OfInteger instantiates
HArray2 from TCollection (Integer,
Array2OfInteger from TColStd);
class HArray2OfReal instantiates
HArray2 from TCollection (Real,
Array2OfReal from TColStd);
class HArray2OfCharacter instantiates
HArray2 from TCollection (Character,
Array2OfCharacter from TColStd);
class HArray2OfBoolean instantiates
HArray2 from TCollection (Boolean,
Array2OfBoolean from TColStd);
class HArray2OfTransient instantiates
HArray2 from TCollection (Transient,
Array2OfTransient from TColStd);
class SequenceOfInteger instantiates
Sequence from TCollection (Integer);
class SequenceOfReal instantiates
Sequence from TCollection (Real);
class SequenceOfAsciiString instantiates
Sequence from TCollection (AsciiString from TCollection);
class SequenceOfHAsciiString instantiates
Sequence from TCollection (HAsciiString from TCollection);
class SequenceOfExtendedString instantiates
Sequence from TCollection (ExtendedString from TCollection);
class SequenceOfHExtendedString instantiates
Sequence from TCollection (HExtendedString from TCollection);
class SequenceOfTransient instantiates
Sequence from TCollection (Transient);
class SequenceOfAddress instantiates
Sequence from TCollection (Address);
class SequenceOfBoolean instantiates
Sequence from TCollection (Boolean);
class HSequenceOfInteger instantiates
HSequence from TCollection (Integer,
SequenceOfInteger from TColStd);
class HSequenceOfReal instantiates
HSequence from TCollection (Real,
SequenceOfReal from TColStd);
class HSequenceOfAsciiString instantiates
HSequence from TCollection (AsciiString from TCollection,
SequenceOfAsciiString from TColStd);
class HSequenceOfHAsciiString instantiates
HSequence from TCollection (HAsciiString from TCollection,
SequenceOfHAsciiString from TColStd);
class HSequenceOfExtendedString instantiates
HSequence from TCollection (ExtendedString from TCollection,
SequenceOfExtendedString from TColStd);
class HSequenceOfHExtendedString instantiates
HSequence from TCollection (HExtendedString from TCollection,
SequenceOfHExtendedString from TColStd);
class HSequenceOfTransient instantiates
HSequence from TCollection (Transient,
SequenceOfTransient from TColStd);
class SetOfInteger instantiates
Set from TCollection (Integer);
class SetOfReal instantiates
Set from TCollection (Real);
class SetOfTransient instantiates
Set from TCollection (Transient);
class HSetOfInteger instantiates
HSet from TCollection (Integer,
SetOfInteger from TColStd);
class HSetOfReal instantiates
HSet from TCollection (Real,
SetOfReal from TColStd);
class HSetOfTransient instantiates
HSet from TCollection (Transient,
SetOfTransient from TColStd);
--
-- Instantiations List (Integer,Real,Transient)
-- ********************************************
--
class ListOfInteger instantiates List from TCollection(Integer );
class ListOfReal instantiates List from TCollection(Real );
class ListOfTransient instantiates List from TCollection(Transient);
class ListOfAsciiString instantiates List from TCollection(AsciiString from TCollection);
--
-- Instantiations Stack (Integer,Real,Transient)
-- *********************************************
--
class StackOfInteger instantiates Stack from TCollection(Integer );
class StackOfReal instantiates Stack from TCollection(Real );
class StackOfTransient instantiates Stack from TCollection(Transient);
--
-- Instantiations Queue (Integer,Real,Transient)
-- *********************************************
--
class QueueOfInteger instantiates Queue from TCollection(Integer );
class QueueOfReal instantiates Queue from TCollection(Real );
class QueueOfTransient instantiates Queue from TCollection(Transient);
--
-- Instantiations MapHasher (Integer,Real, Transient, Persistent)
-- **************************************************************
--
class MapIntegerHasher instantiates MapHasher from TCollection(Integer);
class MapRealHasher instantiates MapHasher from TCollection(Real);
class MapTransientHasher instantiates MapHasher from TCollection(Transient);
-- Instantiations Map (Integer, Real, Transient, Persistent)
-- *********************************************************
--
class MapOfInteger instantiates
Map from TCollection(Integer,MapIntegerHasher);
class MapOfReal instantiates
Map from TCollection(Real,MapRealHasher);
class MapOfTransient instantiates
Map from TCollection(Transient,MapTransientHasher);
class MapOfAsciiString instantiates
Map from TCollection(AsciiString from TCollection,AsciiString from TCollection);
--
-- Instantiations IndexedMap (Integer, Real, Transient, Persistent)
-- ****************************************************************
--
class IndexedMapOfInteger instantiates
IndexedMap from TCollection(Integer,MapIntegerHasher);
class IndexedMapOfReal instantiates
IndexedMap from TCollection(Real,MapRealHasher);
class IndexedMapOfTransient instantiates
IndexedMap from TCollection(Transient,MapTransientHasher);
class IndexedDataMapOfTransientTransient instantiates
IndexedDataMap from TCollection(Transient,
Transient,
MapTransientHasher);
--
-- Instantiations DataMap
-- **********************
--
class DataMapOfIntegerReal instantiates
DataMap from TCollection(Integer,Real,MapIntegerHasher);
class DataMapOfIntegerInteger instantiates
DataMap from TCollection(Integer,Integer,MapIntegerHasher);
class DataMapOfIntegerListOfInteger instantiates
DataMap from TCollection(Integer,ListOfInteger from TColStd,MapIntegerHasher);
class DataMapOfTransientTransient instantiates
DataMap from TCollection(Transient,Transient,MapTransientHasher);
class DataMapOfAsciiStringInteger instantiates
DataMap from TCollection(AsciiString from TCollection,Integer,AsciiString from TCollection);
class DataMapOfIntegerTransient instantiates
DataMap from TCollection(Integer,Transient,MapIntegerHasher);
class DataMapOfStringInteger instantiates
DataMap from TCollection(ExtendedString from TCollection,Integer,ExtendedString from TCollection);
--
-- Arrays of lists...
-- ******************
--
class Array1OfListOfInteger instantiates
Array1 from TCollection (ListOfInteger from TColStd);
class HArray1OfListOfInteger instantiates
HArray1 from TCollection (ListOfInteger from TColStd,
Array1OfListOfInteger from TColStd);
end TColStd;
|