IncludeCPP 4.2.2__py3-none-any.whl → 4.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- includecpp/CHANGELOG.md +104 -115
- includecpp/DOCUMENTATION.md +208 -355
- includecpp/__init__.py +1 -1
- includecpp/__init__.pyi +1 -4
- includecpp/cli/commands.py +1220 -27
- includecpp/core/cpp_api_extensions.pyi +204 -200
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +1505 -1467
- includecpp/core/cssl/__init__.py +317 -0
- includecpp/core/cssl/cpp/build/api.pyd +0 -0
- includecpp/core/cssl/cpp/build/cssl_core.pyi +323 -0
- includecpp/core/cssl/cpp/build/libgcc_s_seh-1.dll +0 -0
- includecpp/core/cssl/cpp/build/libstdc++-6.dll +0 -0
- includecpp/core/cssl/cpp/build/libwinpthread-1.dll +0 -0
- includecpp/core/cssl/cpp/cssl_core.cp +108 -0
- includecpp/core/cssl/cpp/cssl_lexer.hpp +280 -0
- includecpp/core/cssl/cssl_builtins.py +245 -20
- includecpp/core/cssl/cssl_compiler.py +448 -0
- includecpp/core/cssl/cssl_optimizer.py +833 -0
- includecpp/core/cssl/cssl_parser.py +945 -40
- includecpp/core/cssl/cssl_runtime.py +751 -38
- includecpp/core/cssl/cssl_syntax.py +17 -0
- includecpp/core/cssl/cssl_types.py +321 -0
- includecpp/core/cssl_bridge.py +36 -2
- includecpp/generator/parser.cpp +38 -14
- includecpp/vscode/cssl/package.json +15 -0
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +134 -2
- includecpp-4.5.2.dist-info/METADATA +277 -0
- {includecpp-4.2.2.dist-info → includecpp-4.5.2.dist-info}/RECORD +32 -23
- includecpp-4.2.2.dist-info/METADATA +0 -1008
- {includecpp-4.2.2.dist-info → includecpp-4.5.2.dist-info}/WHEEL +0 -0
- {includecpp-4.2.2.dist-info → includecpp-4.5.2.dist-info}/entry_points.txt +0 -0
- {includecpp-4.2.2.dist-info → includecpp-4.5.2.dist-info}/licenses/LICENSE +0 -0
- {includecpp-4.2.2.dist-info → includecpp-4.5.2.dist-info}/top_level.txt +0 -0
|
@@ -6,293 +6,306 @@ DO NOT EDIT - Auto-generated by IncludeCPP build system.
|
|
|
6
6
|
|
|
7
7
|
from typing import Any, List, Dict, Optional, Union, Protocol, overload
|
|
8
8
|
|
|
9
|
-
class
|
|
10
|
-
"""Type hints for
|
|
9
|
+
class Cssl_coreModuleWrapper(Protocol):
|
|
10
|
+
"""Type hints for cssl_core module wrapper (VSCode autocomplete support)."""
|
|
11
11
|
|
|
12
12
|
def getInfo(self) -> Dict[str, Any]:
|
|
13
|
-
"""Get
|
|
13
|
+
"""Get cssl_core module information."""
|
|
14
14
|
...
|
|
15
15
|
|
|
16
|
-
class
|
|
17
|
-
"""C++ class:
|
|
16
|
+
class Lexer:
|
|
17
|
+
"""C++ class: Lexer"""
|
|
18
18
|
|
|
19
|
-
def __init__(self) -> None:
|
|
20
|
-
"""Initialize
|
|
21
|
-
...
|
|
22
|
-
|
|
23
|
-
def add(self, *args: Any, **kwargs: Any) -> Any:
|
|
24
|
-
"""C++ method: add"""
|
|
25
|
-
...
|
|
26
|
-
|
|
27
|
-
def get(self, *args: Any, **kwargs: Any) -> Any:
|
|
28
|
-
"""C++ method: get"""
|
|
29
|
-
...
|
|
30
|
-
|
|
31
|
-
def size(self, *args: Any, **kwargs: Any) -> Any:
|
|
32
|
-
"""C++ method: size"""
|
|
19
|
+
def __init__(self, arg0: str) -> None:
|
|
20
|
+
"""Initialize Lexer instance"""
|
|
33
21
|
...
|
|
34
22
|
|
|
35
|
-
def
|
|
36
|
-
"""C++ method:
|
|
23
|
+
def tokenize(self, *args: Any, **kwargs: Any) -> Any:
|
|
24
|
+
"""C++ method: tokenize"""
|
|
37
25
|
...
|
|
38
26
|
|
|
39
27
|
|
|
40
|
-
|
|
41
|
-
"""C++
|
|
42
|
-
...
|
|
28
|
+
class Token:
|
|
29
|
+
"""C++ class: Token"""
|
|
43
30
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
31
|
+
@overload
|
|
32
|
+
def __init__(self) -> None: ...
|
|
33
|
+
@overload
|
|
34
|
+
def __init__(self, arg0: int, arg1: int, arg2: int) -> None: ...
|
|
35
|
+
@overload
|
|
36
|
+
def __init__(self, arg0: int, arg1: str, arg2: int, arg3: int) -> None: ...
|
|
37
|
+
@overload
|
|
38
|
+
def __init__(self, arg0: int, arg1: float, arg2: int, arg3: int) -> None: ...
|
|
39
|
+
@overload
|
|
40
|
+
def __init__(self, arg0: int, arg1: bool, arg2: int, arg3: int) -> None: ...
|
|
47
41
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
42
|
+
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
43
|
+
"""Initialize Token instance"""
|
|
44
|
+
...
|
|
51
45
|
|
|
52
|
-
|
|
53
|
-
"""C++ function: fast_max"""
|
|
54
|
-
...
|
|
46
|
+
pass
|
|
55
47
|
|
|
56
|
-
|
|
57
|
-
"""C++
|
|
58
|
-
...
|
|
48
|
+
class Interpreter:
|
|
49
|
+
"""C++ class: Interpreter"""
|
|
59
50
|
|
|
51
|
+
def __init__(self) -> None:
|
|
52
|
+
"""Initialize Interpreter instance"""
|
|
53
|
+
...
|
|
60
54
|
|
|
55
|
+
def run(self, *args: Any, **kwargs: Any) -> Any:
|
|
56
|
+
"""C++ method: run"""
|
|
57
|
+
...
|
|
61
58
|
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
def run_string(self, *args: Any, **kwargs: Any) -> Any:
|
|
60
|
+
"""C++ method: run_string"""
|
|
61
|
+
...
|
|
64
62
|
|
|
65
|
-
def getInfo(self) -> Dict[str, Any]:
|
|
66
|
-
"""Get game_math module information."""
|
|
67
|
-
...
|
|
68
63
|
|
|
69
|
-
class
|
|
70
|
-
"""C++ class:
|
|
64
|
+
class Value:
|
|
65
|
+
"""C++ class: Value"""
|
|
71
66
|
|
|
72
67
|
@overload
|
|
73
68
|
def __init__(self) -> None: ...
|
|
74
69
|
@overload
|
|
75
|
-
def __init__(self, arg0:
|
|
70
|
+
def __init__(self, arg0: bool) -> None: ...
|
|
71
|
+
@overload
|
|
72
|
+
def __init__(self, arg0: Any) -> None: ...
|
|
73
|
+
@overload
|
|
74
|
+
def __init__(self, arg0: float) -> None: ...
|
|
75
|
+
@overload
|
|
76
|
+
def __init__(self, arg0: str) -> None: ...
|
|
76
77
|
|
|
77
78
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
78
|
-
"""Initialize
|
|
79
|
+
"""Initialize Value instance"""
|
|
79
80
|
...
|
|
80
81
|
|
|
81
|
-
def
|
|
82
|
-
"""C++ method:
|
|
82
|
+
def as_bool(self, *args: Any, **kwargs: Any) -> Any:
|
|
83
|
+
"""C++ method: as_bool"""
|
|
83
84
|
...
|
|
84
85
|
|
|
85
|
-
def
|
|
86
|
-
"""C++ method:
|
|
86
|
+
def as_float(self, *args: Any, **kwargs: Any) -> Any:
|
|
87
|
+
"""C++ method: as_float"""
|
|
87
88
|
...
|
|
88
89
|
|
|
89
|
-
def
|
|
90
|
-
"""C++ method:
|
|
90
|
+
def as_int(self, *args: Any, **kwargs: Any) -> Any:
|
|
91
|
+
"""C++ method: as_int"""
|
|
91
92
|
...
|
|
92
93
|
|
|
93
|
-
def
|
|
94
|
-
"""C++ method:
|
|
94
|
+
def as_string(self, *args: Any, **kwargs: Any) -> Any:
|
|
95
|
+
"""C++ method: as_string"""
|
|
95
96
|
...
|
|
96
97
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"""C++ function: boxCollision"""
|
|
100
|
-
...
|
|
101
|
-
|
|
102
|
-
def circleCollision(self, *args: Any, **kwargs: Any) -> Any:
|
|
103
|
-
"""C++ function: circleCollision"""
|
|
104
|
-
...
|
|
105
|
-
|
|
106
|
-
def distance(self, *args: Any, **kwargs: Any) -> Any:
|
|
107
|
-
"""C++ function: distance"""
|
|
108
|
-
...
|
|
109
|
-
|
|
110
|
-
def square(self, *args: Any, **kwargs: Any) -> Any:
|
|
111
|
-
"""C++ function: square"""
|
|
112
|
-
...
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
class Solar_systemModuleWrapper(Protocol):
|
|
117
|
-
"""Type hints for solar_system module wrapper (VSCode autocomplete support)."""
|
|
118
|
-
|
|
119
|
-
def getInfo(self) -> Dict[str, Any]:
|
|
120
|
-
"""Get solar_system module information."""
|
|
121
|
-
...
|
|
122
|
-
|
|
123
|
-
class CelestialBody:
|
|
124
|
-
"""C++ class: CelestialBody"""
|
|
125
|
-
|
|
126
|
-
def __init__(self) -> None:
|
|
127
|
-
"""Initialize CelestialBody instance"""
|
|
98
|
+
def get_type(self, *args: Any, **kwargs: Any) -> Any:
|
|
99
|
+
"""C++ method: get_type"""
|
|
128
100
|
...
|
|
129
101
|
|
|
130
|
-
def
|
|
131
|
-
"""C++ method:
|
|
102
|
+
def is_bool(self, *args: Any, **kwargs: Any) -> Any:
|
|
103
|
+
"""C++ method: is_bool"""
|
|
132
104
|
...
|
|
133
105
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
"""C++ class: SolarSystem"""
|
|
137
|
-
|
|
138
|
-
def __init__(self) -> None:
|
|
139
|
-
"""Initialize SolarSystem instance"""
|
|
106
|
+
def is_dict(self, *args: Any, **kwargs: Any) -> Any:
|
|
107
|
+
"""C++ method: is_dict"""
|
|
140
108
|
...
|
|
141
109
|
|
|
142
|
-
def
|
|
143
|
-
"""C++ method:
|
|
110
|
+
def is_float(self, *args: Any, **kwargs: Any) -> Any:
|
|
111
|
+
"""C++ method: is_float"""
|
|
144
112
|
...
|
|
145
113
|
|
|
146
|
-
def
|
|
147
|
-
"""C++ method:
|
|
114
|
+
def is_int(self, *args: Any, **kwargs: Any) -> Any:
|
|
115
|
+
"""C++ method: is_int"""
|
|
148
116
|
...
|
|
149
117
|
|
|
150
|
-
def
|
|
151
|
-
"""C++ method:
|
|
118
|
+
def is_list(self, *args: Any, **kwargs: Any) -> Any:
|
|
119
|
+
"""C++ method: is_list"""
|
|
152
120
|
...
|
|
153
121
|
|
|
154
|
-
def
|
|
155
|
-
"""C++ method:
|
|
122
|
+
def is_null(self, *args: Any, **kwargs: Any) -> Any:
|
|
123
|
+
"""C++ method: is_null"""
|
|
156
124
|
...
|
|
157
125
|
|
|
158
|
-
def
|
|
159
|
-
"""C++ method:
|
|
126
|
+
def is_number(self, *args: Any, **kwargs: Any) -> Any:
|
|
127
|
+
"""C++ method: is_number"""
|
|
160
128
|
...
|
|
161
129
|
|
|
162
|
-
def
|
|
163
|
-
"""C++ method:
|
|
130
|
+
def is_string(self, *args: Any, **kwargs: Any) -> Any:
|
|
131
|
+
"""C++ method: is_string"""
|
|
164
132
|
...
|
|
165
133
|
|
|
166
|
-
def
|
|
167
|
-
"""C++ method:
|
|
134
|
+
def to_bool(self, *args: Any, **kwargs: Any) -> Any:
|
|
135
|
+
"""C++ method: to_bool"""
|
|
168
136
|
...
|
|
169
137
|
|
|
170
|
-
def
|
|
171
|
-
"""C++ method:
|
|
138
|
+
def to_string(self, *args: Any, **kwargs: Any) -> Any:
|
|
139
|
+
"""C++ method: to_string"""
|
|
172
140
|
...
|
|
173
141
|
|
|
174
|
-
def get_positions(self, *args: Any, **kwargs: Any) -> Any:
|
|
175
|
-
"""C++ method: get_positions"""
|
|
176
|
-
...
|
|
177
142
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
143
|
+
def run_cssl(self, *args: Any, **kwargs: Any) -> Any:
|
|
144
|
+
"""C++ function: run_cssl"""
|
|
145
|
+
...
|
|
181
146
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
147
|
+
def version(self, *args: Any, **kwargs: Any) -> Any:
|
|
148
|
+
"""C++ function: version"""
|
|
149
|
+
...
|
|
185
150
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
151
|
+
def is_keyword(self, *args: Any, **kwargs: Any) -> Any:
|
|
152
|
+
"""C++ function: is_keyword"""
|
|
153
|
+
...
|
|
189
154
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
155
|
+
def str_concat(self, *args: Any, **kwargs: Any) -> Any:
|
|
156
|
+
"""C++ function: str_concat"""
|
|
157
|
+
...
|
|
193
158
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
159
|
+
def str_contains(self, *args: Any, **kwargs: Any) -> Any:
|
|
160
|
+
"""C++ function: str_contains"""
|
|
161
|
+
...
|
|
197
162
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
163
|
+
def str_join(self, *args: Any, **kwargs: Any) -> Any:
|
|
164
|
+
"""C++ function: str_join"""
|
|
165
|
+
...
|
|
201
166
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
167
|
+
def str_lower(self, *args: Any, **kwargs: Any) -> Any:
|
|
168
|
+
"""C++ function: str_lower"""
|
|
169
|
+
...
|
|
205
170
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
171
|
+
def str_replace(self, *args: Any, **kwargs: Any) -> Any:
|
|
172
|
+
"""C++ function: str_replace"""
|
|
173
|
+
...
|
|
209
174
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
175
|
+
def str_split(self, *args: Any, **kwargs: Any) -> Any:
|
|
176
|
+
"""C++ function: str_split"""
|
|
177
|
+
...
|
|
213
178
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
179
|
+
def str_trim(self, *args: Any, **kwargs: Any) -> Any:
|
|
180
|
+
"""C++ function: str_trim"""
|
|
181
|
+
...
|
|
217
182
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
183
|
+
def str_upper(self, *args: Any, **kwargs: Any) -> Any:
|
|
184
|
+
"""C++ function: str_upper"""
|
|
185
|
+
...
|
|
221
186
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
187
|
+
def str_reverse(self, *args: Any, **kwargs: Any) -> Any:
|
|
188
|
+
"""C++ function: str_reverse"""
|
|
189
|
+
...
|
|
225
190
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
191
|
+
def str_len(self, *args: Any, **kwargs: Any) -> Any:
|
|
192
|
+
"""C++ function: str_len"""
|
|
193
|
+
...
|
|
229
194
|
|
|
195
|
+
def str_repeat(self, *args: Any, **kwargs: Any) -> Any:
|
|
196
|
+
"""C++ function: str_repeat"""
|
|
197
|
+
...
|
|
230
198
|
|
|
231
|
-
def
|
|
232
|
-
"""C++ function:
|
|
199
|
+
def str_startswith(self, *args: Any, **kwargs: Any) -> Any:
|
|
200
|
+
"""C++ function: str_startswith"""
|
|
233
201
|
...
|
|
234
202
|
|
|
235
|
-
def
|
|
236
|
-
"""C++ function:
|
|
203
|
+
def str_endswith(self, *args: Any, **kwargs: Any) -> Any:
|
|
204
|
+
"""C++ function: str_endswith"""
|
|
237
205
|
...
|
|
238
206
|
|
|
239
|
-
def
|
|
240
|
-
"""C++ function:
|
|
207
|
+
def str_indexof(self, *args: Any, **kwargs: Any) -> Any:
|
|
208
|
+
"""C++ function: str_indexof"""
|
|
241
209
|
...
|
|
242
210
|
|
|
243
|
-
def
|
|
244
|
-
"""C++ function:
|
|
211
|
+
def str_substr(self, *args: Any, **kwargs: Any) -> Any:
|
|
212
|
+
"""C++ function: str_substr"""
|
|
245
213
|
...
|
|
246
214
|
|
|
215
|
+
def str_cmp(self, *args: Any, **kwargs: Any) -> Any:
|
|
216
|
+
"""C++ function: str_cmp"""
|
|
217
|
+
...
|
|
247
218
|
|
|
219
|
+
def math_clamp(self, *args: Any, **kwargs: Any) -> Any:
|
|
220
|
+
"""C++ function: math_clamp"""
|
|
221
|
+
...
|
|
248
222
|
|
|
249
|
-
|
|
250
|
-
|
|
223
|
+
def math_ipow(self, *args: Any, **kwargs: Any) -> Any:
|
|
224
|
+
"""C++ function: math_ipow"""
|
|
225
|
+
...
|
|
251
226
|
|
|
252
|
-
def
|
|
253
|
-
"""
|
|
227
|
+
def math_pow(self, *args: Any, **kwargs: Any) -> Any:
|
|
228
|
+
"""C++ function: math_pow"""
|
|
254
229
|
...
|
|
255
230
|
|
|
256
|
-
|
|
257
|
-
"""C++
|
|
231
|
+
def math_mod(self, *args: Any, **kwargs: Any) -> Any:
|
|
232
|
+
"""C++ function: math_mod"""
|
|
233
|
+
...
|
|
258
234
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
def __init__(self, arg0: float, arg1: float) -> None: ...
|
|
235
|
+
def math_abs(self, *args: Any, **kwargs: Any) -> Any:
|
|
236
|
+
"""C++ function: math_abs"""
|
|
237
|
+
...
|
|
263
238
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
239
|
+
def math_min(self, *args: Any, **kwargs: Any) -> Any:
|
|
240
|
+
"""C++ function: math_min"""
|
|
241
|
+
...
|
|
267
242
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
243
|
+
def math_max(self, *args: Any, **kwargs: Any) -> Any:
|
|
244
|
+
"""C++ function: math_max"""
|
|
245
|
+
...
|
|
271
246
|
|
|
247
|
+
def math_floor(self, *args: Any, **kwargs: Any) -> Any:
|
|
248
|
+
"""C++ function: math_floor"""
|
|
249
|
+
...
|
|
272
250
|
|
|
273
|
-
|
|
274
|
-
"""C++
|
|
251
|
+
def math_ceil(self, *args: Any, **kwargs: Any) -> Any:
|
|
252
|
+
"""C++ function: math_ceil"""
|
|
253
|
+
...
|
|
275
254
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
def __init__(self, arg0: int, arg1: int) -> None: ...
|
|
255
|
+
def array_sum(self, *args: Any, **kwargs: Any) -> Any:
|
|
256
|
+
"""C++ function: array_sum"""
|
|
257
|
+
...
|
|
280
258
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
259
|
+
def array_isum(self, *args: Any, **kwargs: Any) -> Any:
|
|
260
|
+
"""C++ function: array_isum"""
|
|
261
|
+
...
|
|
284
262
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
263
|
+
def array_avg(self, *args: Any, **kwargs: Any) -> Any:
|
|
264
|
+
"""C++ function: array_avg"""
|
|
265
|
+
...
|
|
288
266
|
|
|
267
|
+
def array_min(self, *args: Any, **kwargs: Any) -> Any:
|
|
268
|
+
"""C++ function: array_min"""
|
|
269
|
+
...
|
|
270
|
+
|
|
271
|
+
def array_max(self, *args: Any, **kwargs: Any) -> Any:
|
|
272
|
+
"""C++ function: array_max"""
|
|
273
|
+
...
|
|
274
|
+
|
|
275
|
+
def range(self, *args: Any, **kwargs: Any) -> Any:
|
|
276
|
+
"""C++ function: range"""
|
|
277
|
+
...
|
|
289
278
|
|
|
290
|
-
def
|
|
291
|
-
"""C++ function:
|
|
279
|
+
def loop_check_lt(self, *args: Any, **kwargs: Any) -> Any:
|
|
280
|
+
"""C++ function: loop_check_lt"""
|
|
292
281
|
...
|
|
293
282
|
|
|
294
|
-
def
|
|
295
|
-
"""C++ function:
|
|
283
|
+
def loop_check_le(self, *args: Any, **kwargs: Any) -> Any:
|
|
284
|
+
"""C++ function: loop_check_le"""
|
|
285
|
+
...
|
|
286
|
+
|
|
287
|
+
def loop_check_gt(self, *args: Any, **kwargs: Any) -> Any:
|
|
288
|
+
"""C++ function: loop_check_gt"""
|
|
289
|
+
...
|
|
290
|
+
|
|
291
|
+
def loop_check_ge(self, *args: Any, **kwargs: Any) -> Any:
|
|
292
|
+
"""C++ function: loop_check_ge"""
|
|
293
|
+
...
|
|
294
|
+
|
|
295
|
+
def num_cmp(self, *args: Any, **kwargs: Any) -> Any:
|
|
296
|
+
"""C++ function: num_cmp"""
|
|
297
|
+
...
|
|
298
|
+
|
|
299
|
+
def eq_int(self, *args: Any, **kwargs: Any) -> Any:
|
|
300
|
+
"""C++ function: eq_int"""
|
|
301
|
+
...
|
|
302
|
+
|
|
303
|
+
def eq_float(self, *args: Any, **kwargs: Any) -> Any:
|
|
304
|
+
"""C++ function: eq_float"""
|
|
305
|
+
...
|
|
306
|
+
|
|
307
|
+
def eq_str(self, *args: Any, **kwargs: Any) -> Any:
|
|
308
|
+
"""C++ function: eq_str"""
|
|
296
309
|
...
|
|
297
310
|
|
|
298
311
|
|
|
@@ -315,16 +328,7 @@ class CppApi:
|
|
|
315
328
|
...
|
|
316
329
|
|
|
317
330
|
@overload
|
|
318
|
-
def include(self, module_name: str = "
|
|
319
|
-
|
|
320
|
-
@overload
|
|
321
|
-
def include(self, module_name: str = "game_math", auto_update: Optional[bool] = None) -> Game_mathModuleWrapper: ...
|
|
322
|
-
|
|
323
|
-
@overload
|
|
324
|
-
def include(self, module_name: str = "solar_system", auto_update: Optional[bool] = None) -> Solar_systemModuleWrapper: ...
|
|
325
|
-
|
|
326
|
-
@overload
|
|
327
|
-
def include(self, module_name: str = "templates", auto_update: Optional[bool] = None) -> TemplatesModuleWrapper: ...
|
|
331
|
+
def include(self, module_name: str = "cssl_core", auto_update: Optional[bool] = None) -> Cssl_coreModuleWrapper: ...
|
|
328
332
|
|
|
329
333
|
@overload
|
|
330
334
|
def include(self, module_name: str, auto_update: Optional[bool] = None) -> Any: ...
|