From 04ca0240b82d96e6d2ea69e36e58f960eadf9f11 Mon Sep 17 00:00:00 2001 From: Haxe CI Bot Date: Thu, 29 Aug 2024 10:25:02 +0000 Subject: [PATCH] import xml doc of development (3b050f0a108d47c71622a70e330ad38c1ef43d15) --- xml/development/cpp.xml | 124 +++++++++++++++++++---------- xml/development/flash.xml | 60 +++++++------- xml/development/hl.xml | 159 ++++++++++++++++++++----------------- xml/development/info.json | 2 +- xml/development/js.xml | 60 +++++++------- xml/development/jvm.xml | 60 +++++++------- xml/development/lua.xml | 60 +++++++------- xml/development/macro.xml | 60 +++++++------- xml/development/neko.xml | 60 +++++++------- xml/development/python.xml | 60 +++++++------- 10 files changed, 381 insertions(+), 324 deletions(-) diff --git a/xml/development/cpp.xml b/xml/development/cpp.xml index 443476e7677c..b132ba321bce 100644 --- a/xml/development/cpp.xml +++ b/xml/development/cpp.xml @@ -6569,12 +6569,18 @@ - + + + + Load and return a Cpp primitive from a DLL library. - + + + + Unloaded all dynamic libraries in reverse order of loading. Returns the number of libraries unloaded. @@ -6589,6 +6595,7 @@ { quietFail : false } + @@ -6598,7 +6605,10 @@ - + + + + Tries to load, and always returns a valid function, but the function may throw if called. @@ -6608,6 +6618,7 @@ + "HX_STACK_DO_RETHROW" @@ -6617,36 +6628,54 @@ - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + Returns bytes referencing the content of a string. Use with extreme caution - changing constant strings will crash. Changing one string can cause others to change unexpectedly. @@ -6657,7 +6686,10 @@ - + + + + Print the specified value on the default output. @@ -6665,6 +6697,7 @@ + This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic @@ -6673,6 +6706,7 @@ + This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic @@ -6681,7 +6715,10 @@ - + + + + Print the specified value on the default output followed by a newline character. @@ -6689,7 +6726,10 @@ - + + + + Platform-specific Cpp Library. Provides some platform-specific functions for the C++ target, such as conversion from Haxe types to native types @@ -26677,7 +26717,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -26695,7 +26735,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -26712,7 +26752,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -26727,7 +26767,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -26748,7 +26788,7 @@ Returns the length of `this` Vector. - + @@ -26758,7 +26798,7 @@ - + @@ -26767,7 +26807,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -26783,7 +26823,7 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + @@ -26791,7 +26831,7 @@ Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -26801,7 +26841,7 @@ This returns the internal representation type. - + @@ -26813,7 +26853,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -26829,7 +26869,7 @@ If `array` is null, the result is unspecified. - + @@ -26841,7 +26881,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -26860,7 +26900,7 @@ If `sep` is null, the result is unspecified. - + @@ -26876,7 +26916,7 @@ If `f` is null, the result is unspecified. - + @@ -26901,7 +26941,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -26919,7 +26959,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -26936,7 +26976,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -26951,7 +26991,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -26972,7 +27012,7 @@ Returns the length of `this` Vector. - + @@ -26982,7 +27022,7 @@ - + @@ -26991,7 +27031,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -27007,7 +27047,7 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + @@ -27015,7 +27055,7 @@ Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -27025,7 +27065,7 @@ This returns the internal representation type. - + @@ -27037,7 +27077,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -27053,7 +27093,7 @@ If `array` is null, the result is unspecified. - + @@ -27065,7 +27105,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -27084,7 +27124,7 @@ If `sep` is null, the result is unspecified. - + @@ -27100,7 +27140,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/flash.xml b/xml/development/flash.xml index 6a4f8d61328f..b0644887d39b 100644 --- a/xml/development/flash.xml +++ b/xml/development/flash.xml @@ -42559,7 +42559,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -42574,7 +42574,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -42588,7 +42588,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -42600,7 +42600,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -42617,14 +42617,14 @@ Returns the length of `this` Vector. - + - + @@ -42632,7 +42632,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -42647,14 +42647,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -42663,7 +42663,7 @@ This returns the internal representation type. - + @@ -42674,7 +42674,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -42689,7 +42689,7 @@ If `array` is null, the result is unspecified. - + @@ -42700,7 +42700,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -42718,7 +42718,7 @@ If `sep` is null, the result is unspecified. - + @@ -42733,7 +42733,7 @@ If `f` is null, the result is unspecified. - + @@ -42757,7 +42757,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -42772,7 +42772,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -42786,7 +42786,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -42798,7 +42798,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -42815,14 +42815,14 @@ Returns the length of `this` Vector. - + - + @@ -42830,7 +42830,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -42845,14 +42845,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -42861,7 +42861,7 @@ This returns the internal representation type. - + @@ -42872,7 +42872,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -42887,7 +42887,7 @@ If `array` is null, the result is unspecified. - + @@ -42898,7 +42898,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -42916,7 +42916,7 @@ If `sep` is null, the result is unspecified. - + @@ -42931,7 +42931,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/hl.xml b/xml/development/hl.xml index 10b1364d38b3..9fdd2d4c7de3 100644 --- a/xml/development/hl.xml +++ b/xml/development/hl.xml @@ -19401,12 +19401,15 @@ - - + + - - - <_new public="1" get="inline" set="null" line="29" static="1"> + A Vector is a storage of fixed size. It can be faster than Array on some + targets, and is never slower. + + @see https://haxe.org/manual/std-vector.html + + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19421,16 +19424,21 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="35"> + <_new public="1" get="inline" set="null" line="89"> + Creates a new Vector of length `length` filled with `defaultValue` elements. + + Can be faster than `new Vector(length)` for iteration on some targets for non-nullable elements. + + If `length` is less than or equal to 0, the result is unspecified. - + @@ -19442,7 +19450,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19459,11 +19467,14 @@ Returns the length of `this` Vector. - - - - - + + + + + + + + @@ -19471,7 +19482,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19486,14 +19497,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19502,7 +19513,7 @@ This returns the internal representation type. - + @@ -19513,7 +19524,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19528,7 +19539,7 @@ If `array` is null, the result is unspecified. - + @@ -19539,7 +19550,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19557,7 +19568,22 @@ If `sep` is null, the result is unspecified. - + + + + + + + + + + Creates a new Vector by applying function `f` to all elements of `this`. + + The order of elements is preserved. + + If `f` is null, the result is unspecified. + + @@ -19578,26 +19604,10 @@ If `f` is null, the result is unspecified.]]> - - - - - - - - - - Creates a new Vector by applying function `f` to all elements of `this`. - - The order of elements is preserved. - - If `f` is null, the result is unspecified. - - - - <_new public="1" get="inline" set="null" line="29" static="1"> + + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19612,16 +19622,21 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="35"> + <_new public="1" get="inline" set="null" line="89"> + Creates a new Vector of length `length` filled with `defaultValue` elements. + + Can be faster than `new Vector(length)` for iteration on some targets for non-nullable elements. + + If `length` is less than or equal to 0, the result is unspecified. - + @@ -19633,7 +19648,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19650,11 +19665,14 @@ Returns the length of `this` Vector. - - - - - + + + + + + + + @@ -19662,7 +19680,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19677,14 +19695,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19693,7 +19711,7 @@ This returns the internal representation type. - + @@ -19704,7 +19722,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19719,7 +19737,7 @@ If `array` is null, the result is unspecified. - + @@ -19730,7 +19748,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19748,7 +19766,22 @@ If `sep` is null, the result is unspecified. - + + + + + + + + + + Creates a new Vector by applying function `f` to all elements of `this`. + + The order of elements is preserved. + + If `f` is null, the result is unspecified. + + @@ -19769,22 +19802,6 @@ If `f` is null, the result is unspecified.]]> - - - - - - - - - - Creates a new Vector by applying function `f` to all elements of `this`. - - The order of elements is preserved. - - If `f` is null, the result is unspecified. - - diff --git a/xml/development/info.json b/xml/development/info.json index ff064856455c..ba8be8c4d0c3 100644 --- a/xml/development/info.json +++ b/xml/development/info.json @@ -1,4 +1,4 @@ { - "commit": "7415e9f5c54ca2d5510ed67d58c51c8ea70842f1", + "commit": "3b050f0a108d47c71622a70e330ad38c1ef43d15", "branch": "development" } diff --git a/xml/development/js.xml b/xml/development/js.xml index f9cc4ac66ac3..86dfe4c3f7e7 100644 --- a/xml/development/js.xml +++ b/xml/development/js.xml @@ -19063,7 +19063,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19078,7 +19078,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -19092,7 +19092,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -19104,7 +19104,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19121,14 +19121,14 @@ Returns the length of `this` Vector. - + - + @@ -19136,7 +19136,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19151,14 +19151,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19167,7 +19167,7 @@ This returns the internal representation type. - + @@ -19178,7 +19178,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19193,7 +19193,7 @@ If `array` is null, the result is unspecified. - + @@ -19204,7 +19204,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19222,7 +19222,7 @@ If `sep` is null, the result is unspecified. - + @@ -19237,7 +19237,7 @@ If `f` is null, the result is unspecified. - + @@ -19261,7 +19261,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19276,7 +19276,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -19290,7 +19290,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -19302,7 +19302,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19319,14 +19319,14 @@ Returns the length of `this` Vector. - + - + @@ -19334,7 +19334,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19349,14 +19349,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19365,7 +19365,7 @@ This returns the internal representation type. - + @@ -19376,7 +19376,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19391,7 +19391,7 @@ If `array` is null, the result is unspecified. - + @@ -19402,7 +19402,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19420,7 +19420,7 @@ If `sep` is null, the result is unspecified. - + @@ -19435,7 +19435,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/jvm.xml b/xml/development/jvm.xml index 972f4e45fb16..4f464ef7f933 100644 --- a/xml/development/jvm.xml +++ b/xml/development/jvm.xml @@ -20496,7 +20496,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -20511,7 +20511,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -20525,7 +20525,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -20537,7 +20537,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -20554,11 +20554,11 @@ Returns the length of `this` Vector. - + - + @@ -20566,7 +20566,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -20581,14 +20581,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -20597,7 +20597,7 @@ This returns the internal representation type. - + @@ -20608,7 +20608,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -20623,7 +20623,7 @@ If `array` is null, the result is unspecified. - + @@ -20634,7 +20634,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -20652,7 +20652,7 @@ If `sep` is null, the result is unspecified. - + @@ -20667,7 +20667,7 @@ If `f` is null, the result is unspecified. - + @@ -20691,7 +20691,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -20706,7 +20706,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -20720,7 +20720,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -20732,7 +20732,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -20749,11 +20749,11 @@ Returns the length of `this` Vector. - + - + @@ -20761,7 +20761,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -20776,14 +20776,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -20792,7 +20792,7 @@ This returns the internal representation type. - + @@ -20803,7 +20803,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -20818,7 +20818,7 @@ If `array` is null, the result is unspecified. - + @@ -20829,7 +20829,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -20847,7 +20847,7 @@ If `sep` is null, the result is unspecified. - + @@ -20862,7 +20862,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/lua.xml b/xml/development/lua.xml index f7c8c60d7774..016b79764823 100644 --- a/xml/development/lua.xml +++ b/xml/development/lua.xml @@ -17883,7 +17883,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -17901,7 +17901,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -17918,7 +17918,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -17930,7 +17930,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -17947,14 +17947,14 @@ Returns the length of `this` Vector. - + - + @@ -17962,7 +17962,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -17977,14 +17977,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -17993,7 +17993,7 @@ This returns the internal representation type. - + @@ -18004,7 +18004,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -18019,7 +18019,7 @@ If `array` is null, the result is unspecified. - + @@ -18030,7 +18030,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -18048,7 +18048,7 @@ If `sep` is null, the result is unspecified. - + @@ -18063,7 +18063,7 @@ If `f` is null, the result is unspecified. - + @@ -18087,7 +18087,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -18105,7 +18105,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -18122,7 +18122,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -18134,7 +18134,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -18151,14 +18151,14 @@ Returns the length of `this` Vector. - + - + @@ -18166,7 +18166,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -18181,14 +18181,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -18197,7 +18197,7 @@ This returns the internal representation type. - + @@ -18208,7 +18208,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -18223,7 +18223,7 @@ If `array` is null, the result is unspecified. - + @@ -18234,7 +18234,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -18252,7 +18252,7 @@ If `sep` is null, the result is unspecified. - + @@ -18267,7 +18267,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/macro.xml b/xml/development/macro.xml index 92444fdf0cfa..3136e8c38616 100644 --- a/xml/development/macro.xml +++ b/xml/development/macro.xml @@ -28401,7 +28401,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -28416,7 +28416,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -28430,7 +28430,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -28442,7 +28442,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -28459,14 +28459,14 @@ Returns the length of `this` Vector. - + - + @@ -28474,7 +28474,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -28489,14 +28489,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -28505,7 +28505,7 @@ This returns the internal representation type. - + @@ -28516,7 +28516,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -28531,7 +28531,7 @@ If `array` is null, the result is unspecified. - + @@ -28542,7 +28542,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -28560,7 +28560,7 @@ If `sep` is null, the result is unspecified. - + @@ -28575,7 +28575,7 @@ If `f` is null, the result is unspecified. - + @@ -28599,7 +28599,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -28614,7 +28614,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -28628,7 +28628,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -28640,7 +28640,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -28657,14 +28657,14 @@ Returns the length of `this` Vector. - + - + @@ -28672,7 +28672,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -28687,14 +28687,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -28703,7 +28703,7 @@ This returns the internal representation type. - + @@ -28714,7 +28714,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -28729,7 +28729,7 @@ If `array` is null, the result is unspecified. - + @@ -28740,7 +28740,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -28758,7 +28758,7 @@ If `sep` is null, the result is unspecified. - + @@ -28773,7 +28773,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/neko.xml b/xml/development/neko.xml index b52f82303b63..884aa35357a6 100644 --- a/xml/development/neko.xml +++ b/xml/development/neko.xml @@ -18983,7 +18983,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19001,7 +19001,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -19018,7 +19018,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -19030,7 +19030,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19047,14 +19047,14 @@ Returns the length of `this` Vector. - + - + @@ -19062,7 +19062,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19078,14 +19078,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19094,7 +19094,7 @@ This returns the internal representation type. - + @@ -19105,7 +19105,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19120,7 +19120,7 @@ If `array` is null, the result is unspecified. - + @@ -19131,7 +19131,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19149,7 +19149,7 @@ If `sep` is null, the result is unspecified. - + @@ -19164,7 +19164,7 @@ If `f` is null, the result is unspecified. - + @@ -19188,7 +19188,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -19206,7 +19206,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -19223,7 +19223,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -19235,7 +19235,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -19252,14 +19252,14 @@ Returns the length of `this` Vector. - + - + @@ -19267,7 +19267,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -19283,14 +19283,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -19299,7 +19299,7 @@ This returns the internal representation type. - + @@ -19310,7 +19310,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -19325,7 +19325,7 @@ If `array` is null, the result is unspecified. - + @@ -19336,7 +19336,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -19354,7 +19354,7 @@ If `sep` is null, the result is unspecified. - + @@ -19369,7 +19369,7 @@ If `f` is null, the result is unspecified. - + diff --git a/xml/development/python.xml b/xml/development/python.xml index 3d9cdc605fc5..437c1cf5d09b 100644 --- a/xml/development/python.xml +++ b/xml/development/python.xml @@ -18560,7 +18560,7 @@ @see https://haxe.org/manual/std-vector.html - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -18575,7 +18575,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -18589,7 +18589,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -18601,7 +18601,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -18618,11 +18618,11 @@ Returns the length of `this` Vector. - + - + @@ -18630,7 +18630,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -18645,14 +18645,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -18661,7 +18661,7 @@ This returns the internal representation type. - + @@ -18672,7 +18672,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -18687,7 +18687,7 @@ If `array` is null, the result is unspecified. - + @@ -18698,7 +18698,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -18716,7 +18716,7 @@ If `sep` is null, the result is unspecified. - + @@ -18731,7 +18731,7 @@ If `f` is null, the result is unspecified. - + @@ -18755,7 +18755,7 @@ - <_new public="1" get="inline" set="null" line="62" static="1"> + <_new public="1" get="inline" set="null" line="57" static="1"> @@ -18770,7 +18770,7 @@ - null for other types on static targets If `length` is less than or equal to 0, the result is unspecified. - <_new public="1" get="inline" set="null" line="92"> + <_new public="1" get="inline" set="null" line="89"> @@ -18784,7 +18784,7 @@ If `length` is less than or equal to 0, the result is unspecified. - + @@ -18796,7 +18796,7 @@ If `index` is negative or exceeds `this.length`, the result is unspecified. - + @@ -18813,11 +18813,11 @@ Returns the length of `this` Vector. - + - + @@ -18825,7 +18825,7 @@ Sets all `length` elements of `this` Vector to `value`. - + @@ -18840,14 +18840,14 @@ The results are unspecified if `length` results in out-of-bounds access, or if `src` or `dest` are null - + Creates a new Array, copy the content from the Vector to it, and returns it. - + @@ -18856,7 +18856,7 @@ This returns the internal representation type. - + @@ -18867,7 +18867,7 @@ If `data` is null, the corresponding Vector is also `null`. - + @@ -18882,7 +18882,7 @@ If `array` is null, the result is unspecified. - + @@ -18893,7 +18893,7 @@ `a[i] == a.copy()[i]` is true for any valid `i`. However, `a == a.copy()` is always false. - + @@ -18911,7 +18911,7 @@ If `sep` is null, the result is unspecified. - + @@ -18926,7 +18926,7 @@ If `f` is null, the result is unspecified. - +