|
310 | 310 | given or computed starting index is greater than or equal to the length of `this` Array, |
311 | 311 | the whole array will be searched, if it is less than 0, the function returns -1.</haxe_doc> |
312 | 312 | </lastIndexOf> |
313 | | - <copy public="1" get="inline" set="null" line="72"> |
| 313 | + <copy public="1" get="inline" set="null" line="62"> |
314 | 314 | <f a=""><c path="Array"><c path="Array.T"/></c></f> |
315 | 315 | <haxe_doc>Returns a shallow copy of `this` Array. |
316 | 316 |
|
317 | 317 | The elements are not copied and retain their identity, so |
318 | 318 | `a[i] == a.copy()[i]` is true for any valid `i`. However, |
319 | 319 | `a == a.copy()` is always false.</haxe_doc> |
320 | 320 | </copy> |
321 | | - <map public="1" params="S" get="inline" set="null" line="76"> |
| 321 | + <map public="1" params="S" get="inline" set="null" line="66"> |
322 | 322 | <f a="f"> |
323 | 323 | <f a=""> |
324 | 324 | <c path="Array.T"/> |
|
333 | 333 |
|
334 | 334 | If `f` is null, the result is unspecified.</haxe_doc> |
335 | 335 | </map> |
336 | | - <filter public="1" get="inline" set="null" line="84"> |
| 336 | + <filter public="1" get="inline" set="null" line="74"> |
337 | 337 | <f a="f"> |
338 | 338 | <f a=""> |
339 | 339 | <c path="Array.T"/> |
|
349 | 349 |
|
350 | 350 | If `f` is null, the result is unspecified.</haxe_doc> |
351 | 351 | </filter> |
352 | | - <iterator public="1" get="inline" set="null" line="88"> |
| 352 | + <iterator public="1" get="inline" set="null" line="78"> |
353 | 353 | <f a=""><c path="haxe.iterators.ArrayIterator"><c path="Array.T"/></c></f> |
354 | 354 | <meta><m n=":runtime"/></meta> |
355 | 355 | <haxe_doc>Returns an iterator of the Array values.</haxe_doc> |
356 | 356 | </iterator> |
357 | | - <keyValueIterator public="1" get="inline" set="null" line="92"> |
| 357 | + <keyValueIterator public="1" get="inline" set="null" line="82"> |
358 | 358 | <f a=""><c path="haxe.iterators.ArrayKeyValueIterator"><c path="Array.T"/></c></f> |
359 | 359 | <meta><m n=":runtime"/></meta> |
360 | 360 | <haxe_doc>Returns an iterator of the Array indices and values.</haxe_doc> |
361 | 361 | </keyValueIterator> |
362 | | - <resize public="1" get="inline" set="null" line="96"> |
| 362 | + <resize public="1" get="inline" set="null" line="86"> |
363 | 363 | <f a="len"> |
364 | 364 | <x path="Int"/> |
365 | 365 | <x path="Void"/> |
|
2456 | 2456 | If `x` starts with a hexadecimal prefix which is not followed by at least one valid hexadecimal |
2457 | 2457 | digit, the result is unspecified.</haxe_doc> |
2458 | 2458 | </parseInt> |
2459 | | - <parseFloat public="1" get="inline" set="null" line="77" static="1"> |
| 2459 | + <parseFloat public="1" get="inline" set="null" line="63" static="1"> |
2460 | 2460 | <f a="x"> |
2461 | 2461 | <c path="String"/> |
2462 | 2462 | <x path="Float"/> |
|
2471 | 2471 | It may also end with `e` or `E` followed by optional minus or plus sign and a sequence of |
2472 | 2472 | digits (defines exponent to base 10).</haxe_doc> |
2473 | 2473 | </parseFloat> |
2474 | | - <random public="1" set="method" line="81" static="1"> |
| 2474 | + <random public="1" set="method" line="67" static="1"> |
2475 | 2475 | <f a="x"> |
2476 | 2476 | <x path="Int"/> |
2477 | 2477 | <x path="Int"/> |
|
3199 | 3199 |
|
3200 | 3200 | The enum name must not include any type parameters.</haxe_doc> |
3201 | 3201 | </resolveEnum> |
3202 | | - <createInstance public="1" params="T" set="method" line="137" static="1"> |
| 3202 | + <createInstance public="1" params="T" set="method" line="91" static="1"> |
3203 | 3203 | <f a="cl:args"> |
3204 | 3204 | <x path="Class"><c path="createInstance.T"/></x> |
3205 | 3205 | <c path="Array"><d/></c> |
|
3221 | 3221 | In particular, default values of constructor arguments are not |
3222 | 3222 | guaranteed to be taken into account.</haxe_doc> |
3223 | 3223 | </createInstance> |
3224 | | - <createEmptyInstance public="1" params="T" get="inline" set="null" line="142" static="1"> |
| 3224 | + <createEmptyInstance public="1" params="T" get="inline" set="null" line="96" static="1"> |
3225 | 3225 | <f a="cl"> |
3226 | 3226 | <x path="Class"><c path="createEmptyInstance.T"/></x> |
3227 | 3227 | <c path="createEmptyInstance.T"/> |
|
3232 | 3232 |
|
3233 | 3233 | If `cl` is null, the result is unspecified.</haxe_doc> |
3234 | 3234 | </createEmptyInstance> |
3235 | | - <createEnum public="1" params="T" set="method" line="147" static="1"> |
| 3235 | + <createEnum public="1" params="T" set="method" line="100" static="1"> |
3236 | 3236 | <f a="e:constr:?params"> |
3237 | 3237 | <x path="Enum"><c path="createEnum.T"/></x> |
3238 | 3238 | <c path="String"/> |
|
3247 | 3247 | expected number of constructor arguments, or if any argument has an |
3248 | 3248 | invalid type, the result is unspecified.</haxe_doc> |
3249 | 3249 | </createEnum> |
3250 | | - <createEnumIndex public="1" params="T" set="method" line="161" static="1"> |
| 3250 | + <createEnumIndex public="1" params="T" set="method" line="114" static="1"> |
3251 | 3251 | <f a="e:index:?params"> |
3252 | 3252 | <x path="Enum"><c path="createEnumIndex.T"/></x> |
3253 | 3253 | <x path="Int"/> |
|
3266 | 3266 | expected number of constructor arguments, or if any argument has an |
3267 | 3267 | invalid type, the result is unspecified.</haxe_doc> |
3268 | 3268 | </createEnumIndex> |
3269 | | - <getInstanceFields public="1" set="method" line="210" static="1"> |
| 3269 | + <getInstanceFields public="1" set="method" line="163" static="1"> |
3270 | 3270 | <f a="c"> |
3271 | 3271 | <x path="Class"><d/></x> |
3272 | 3272 | <c path="Array"><c path="String"/></c> |
|
3282 | 3282 |
|
3283 | 3283 | If `c` is null, the result is unspecified.</haxe_doc> |
3284 | 3284 | </getInstanceFields> |
3285 | | - <getClassFields public="1" set="method" line="218" static="1"> |
| 3285 | + <getClassFields public="1" set="method" line="171" static="1"> |
3286 | 3286 | <f a="c"> |
3287 | 3287 | <x path="Class"><d/></x> |
3288 | 3288 | <c path="Array"><c path="String"/></c> |
|
3295 | 3295 |
|
3296 | 3296 | If `c` is null, the result is unspecified.</haxe_doc> |
3297 | 3297 | </getClassFields> |
3298 | | - <getEnumConstructs public="1" get="inline" set="null" line="230" static="1"> |
| 3298 | + <getEnumConstructs public="1" get="inline" set="null" line="183" static="1"> |
3299 | 3299 | <f a="e"> |
3300 | 3300 | <x path="Enum"><d/></x> |
3301 | 3301 | <c path="Array"><c path="String"/></c> |
|
3307 | 3307 |
|
3308 | 3308 | If `e` is null, the result is unspecified.</haxe_doc> |
3309 | 3309 | </getEnumConstructs> |
3310 | | - <typeof public="1" set="method" line="239" static="1"> |
| 3310 | + <typeof public="1" set="method" line="192" static="1"> |
3311 | 3311 | <f a="v"> |
3312 | 3312 | <d/> |
3313 | 3313 | <e path="ValueType"/> |
|
3322 | 3322 | per platform. Assumptions regarding this should be minimized to avoid |
3323 | 3323 | surprises.</haxe_doc> |
3324 | 3324 | </typeof> |
3325 | | - <enumEq public="1" params="T" set="method" line="279" static="1"> |
| 3325 | + <enumEq public="1" params="T" set="method" line="232" static="1"> |
3326 | 3326 | <f a="a:b"> |
3327 | 3327 | <c path="enumEq.T"/> |
3328 | 3328 | <c path="enumEq.T"/> |
|
3336 | 3336 |
|
3337 | 3337 | If `a` or `b` are null, the result is unspecified.</haxe_doc> |
3338 | 3338 | </enumEq> |
3339 | | - <enumConstructor public="1" get="inline" set="null" line="309" static="1"> |
| 3339 | + <enumConstructor public="1" get="inline" set="null" line="262" static="1"> |
3340 | 3340 | <f a="e"> |
3341 | 3341 | <x path="EnumValue"/> |
3342 | 3342 | <c path="String"/> |
|
3348 | 3348 |
|
3349 | 3349 | If `e` is null, the result is unspecified.</haxe_doc> |
3350 | 3350 | </enumConstructor> |
3351 | | - <enumParameters public="1" set="method" line="323" static="1"> |
| 3351 | + <enumParameters public="1" set="method" line="276" static="1"> |
3352 | 3352 | <f a="e"> |
3353 | 3353 | <x path="EnumValue"/> |
3354 | 3354 | <c path="Array"><d/></c> |
|
3363 | 3363 |
|
3364 | 3364 | If `e` is null, the result is unspecified.</haxe_doc> |
3365 | 3365 | </enumParameters> |
3366 | | - <enumIndex public="1" get="inline" set="null" line="328" static="1"> |
| 3366 | + <enumIndex public="1" get="inline" set="null" line="281" static="1"> |
3367 | 3367 | <f a="e"> |
3368 | 3368 | <x path="EnumValue"/> |
3369 | 3369 | <x path="Int"/> |
|
3376 | 3376 |
|
3377 | 3377 | If `e` is null, the result is unspecified.</haxe_doc> |
3378 | 3378 | </enumIndex> |
3379 | | - <allEnums public="1" params="T" get="inline" set="null" line="336" static="1"> |
| 3379 | + <allEnums public="1" params="T" get="inline" set="null" line="289" static="1"> |
3380 | 3380 | <f a="e"> |
3381 | 3381 | <x path="Enum"><c path="allEnums.T"/></x> |
3382 | 3382 | <c path="Array"><c path="allEnums.T"/></c> |
|
0 commit comments