Home
last modified time | relevance | path

Searched refs:equals (Results 1 - 25 of 1453) sorted by relevance

12345678910>>...59

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bigdec/
H A DDiagBigDecimalTest.java193 TestFmwk.assertTrue("con001", (ohos.global.icu.math.BigDecimal.ZERO.toString()).equals("0")); in diagconstructors()
194 TestFmwk.assertTrue("con002", (ohos.global.icu.math.BigDecimal.ONE.toString()).equals("1")); in diagconstructors()
195 TestFmwk.assertTrue("con003", (ohos.global.icu.math.BigDecimal.TEN.toString()).equals("10")); in diagconstructors()
201 TestFmwk.assertTrue("cbd001", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("0"))).toString()).equals("0")); in diagconstructors()
202 TestFmwk.assertTrue("cbd002", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("1"))).toString()).equals("1")); in diagconstructors()
203 TestFmwk.assertTrue("cbd003", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("10"))).toString()).equals("10")); in diagconstructors()
204 TestFmwk.assertTrue("cbd004", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("1000"))).toString()).equals("1000")); in diagconstructors()
205 TestFmwk.assertTrue("cbd005", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("10.0"))).toString()).equals("10.0")); in diagconstructors()
206 TestFmwk.assertTrue("cbd006", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("10.1"))).toString()).equals("10.1")); in diagconstructors()
207 TestFmwk.assertTrue("cbd007", ((new ohos.global.icu.math.BigDecimal(new java.math.BigDecimal("-1.1"))).toString()).equals(" in diagconstructors()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
H A DDiagBigDecimalTest.java190 TestFmwk.assertTrue("con001", (com.ibm.icu.math.BigDecimal.ZERO.toString()).equals("0")); in diagconstructors()
191 TestFmwk.assertTrue("con002", (com.ibm.icu.math.BigDecimal.ONE.toString()).equals("1")); in diagconstructors()
192 TestFmwk.assertTrue("con003", (com.ibm.icu.math.BigDecimal.TEN.toString()).equals("10")); in diagconstructors()
198 TestFmwk.assertTrue("cbd001", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("0"))).toString()).equals("0")); in diagconstructors()
199 TestFmwk.assertTrue("cbd002", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1"))).toString()).equals("1")); in diagconstructors()
200 TestFmwk.assertTrue("cbd003", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10"))).toString()).equals("10")); in diagconstructors()
201 TestFmwk.assertTrue("cbd004", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1000"))).toString()).equals("1000")); in diagconstructors()
202 TestFmwk.assertTrue("cbd005", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.0"))).toString()).equals("10.0")); in diagconstructors()
203 TestFmwk.assertTrue("cbd006", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.1"))).toString()).equals("10.1")); in diagconstructors()
204 TestFmwk.assertTrue("cbd007", ((new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("-1.1"))).toString()).equals(" in diagconstructors()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DCompactArrayTest.java37 if (cba.equals(cba2)) { in TestByteArrayCoverage()
42 logln("equals null: " + cba.equals(null)); in TestByteArrayCoverage()
43 logln("equals self: " + cba.equals(cba)); in TestByteArrayCoverage()
44 logln("equals clone: " + cba.equals(cba3)); in TestByteArrayCoverage()
45 logln("equals bogus: " + cba.equals(new Object())); in TestByteArrayCoverage()
59 logln("equals in TestByteArrayCoverage()
[all...]
H A DLocaleBuilderTest.java127 if (method.equals("L")) { in TestLocaleBuilder()
129 } else if (method.equals("S")) { in TestLocaleBuilder()
131 } else if (method.equals("R")) { in TestLocaleBuilder()
133 } else if (method.equals("V")) { in TestLocaleBuilder()
135 } else if (method.equals("K")) { in TestLocaleBuilder()
139 } else if (method.equals("A")) { in TestLocaleBuilder()
141 } else if (method.equals("E")) { in TestLocaleBuilder()
145 } else if (method.equals("P")) { in TestLocaleBuilder()
147 } else if (method.equals("U")) { in TestLocaleBuilder()
149 } else if (method.equals(" in TestLocaleBuilder()
[all...]
H A DStringTokenizerTest.java64 if (!(defaultst.nextElement().equals(expected[i]) in TestConstructors()
65 && stdelimiter.nextElement().equals(expected[i]) in TestConstructors()
66 && stdelimiterreturn.nextElement().equals(expected[i]) in TestConstructors()
67 && stdelimiterset.nextElement().equals(expected[i]) in TestConstructors()
68 && stdelimitersetreturn.nextElement().equals(expected[i]))) { in TestConstructors()
75 if(!(stdelimiterset1.nextElement().equals(str))) in TestConstructors()
85 if (!(stdelimiterreturn.nextElement().equals(expected1[i]) in TestConstructors()
86 && stdelimitersetreturn.nextElement().equals(expected1[i]))) { in TestConstructors()
97 if (!(stdelimiter.nextElement().equals(str) in TestConstructors()
98 && stdelimiterreturn.nextElement().equals(st in TestConstructors()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DCompactArrayTest.java34 if (cba.equals(cba2)) { in TestByteArrayCoverage()
39 logln("equals null: " + cba.equals(null)); in TestByteArrayCoverage()
40 logln("equals self: " + cba.equals(cba)); in TestByteArrayCoverage()
41 logln("equals clone: " + cba.equals(cba3)); in TestByteArrayCoverage()
42 logln("equals bogus: " + cba.equals(new Object())); in TestByteArrayCoverage()
56 logln("equals in TestByteArrayCoverage()
[all...]
H A DLocaleBuilderTest.java124 if (method.equals("L")) { in TestLocaleBuilder()
126 } else if (method.equals("S")) { in TestLocaleBuilder()
128 } else if (method.equals("R")) { in TestLocaleBuilder()
130 } else if (method.equals("V")) { in TestLocaleBuilder()
132 } else if (method.equals("K")) { in TestLocaleBuilder()
136 } else if (method.equals("A")) { in TestLocaleBuilder()
138 } else if (method.equals("E")) { in TestLocaleBuilder()
142 } else if (method.equals("P")) { in TestLocaleBuilder()
144 } else if (method.equals("U")) { in TestLocaleBuilder()
146 } else if (method.equals(" in TestLocaleBuilder()
[all...]
/third_party/skia/tests/
H A DStringTest.cpp35 REPORTER_ASSERT(reporter, a.equals("hello", 5)); in DEF_TEST()
36 REPORTER_ASSERT(reporter, a.equals("hello")); in DEF_TEST()
37 REPORTER_ASSERT(reporter, !a.equals("help")); in DEF_TEST()
73 REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f); in DEF_TEST()
86 REPORTER_ASSERT(reporter, a.equals("2147483647")); in DEF_TEST()
89 REPORTER_ASSERT(reporter, a.equals("-2147483647")); in DEF_TEST()
92 REPORTER_ASSERT(reporter, a.equals("-2147483648")); in DEF_TEST()
96 REPORTER_ASSERT(reporter, a.equals("2147483647")); in DEF_TEST()
99 REPORTER_ASSERT(reporter, a.equals("2147483649")); in DEF_TEST()
102 REPORTER_ASSERT(reporter, a.equals("429496729 in DEF_TEST()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dir_equals.cpp37 return a->equals(b, ignore); in possibly_null_equals()
45 ir_instruction::equals(const ir_instruction *, enum ir_node_type) const in equals() function in ir_instruction
51 ir_constant::equals(const ir_instruction *ir, enum ir_node_type) const in equals() function in ir_constant
74 ir_dereference_variable::equals(const ir_instruction *ir, in equals() function in ir_dereference_variable
85 ir_dereference_array::equals(const ir_instruction *ir, in equals() function in ir_dereference_array
95 if (!array->equals(other->array, ignore)) in equals()
98 if (!array_index->equals(other->array_index, ignore)) in equals()
105 ir_swizzle::equals(const ir_instruction *ir, in equals() function in ir_swizzle
124 return val->equals(other->val, ignore); in equals()
128 ir_texture::equals(cons function in ir_texture
199 ir_expression::equals(const ir_instruction *ir, enum ir_node_type ignore) const equals() function in ir_expression
[all...]
/third_party/skia/tools/flags/
H A DCommonFlagsConfig.cpp272 if (value.equals("true")) { in parse_option_bool()
276 if (value.equals("false")) { in parse_option_bool()
286 if (value.equals("gl")) { in parse_option_gpu_api()
290 if (value.equals("gles")) { in parse_option_gpu_api()
294 if (value.equals("glesfakev2")) { in parse_option_gpu_api()
299 if (value.equals("angle_d3d9_es2")) { in parse_option_gpu_api()
303 if (value.equals("angle_d3d11_es2")) { in parse_option_gpu_api()
307 if (value.equals("angle_d3d11_es3")) { in parse_option_gpu_api()
311 if (value.equals("angle_gl_es2")) { in parse_option_gpu_api()
315 if (value.equals("angle_gl_es in parse_option_gpu_api()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DMacroProps.java104 public boolean equals(Object _other) { in equals() method in MacroProps
112 return Objects.equals(notation, other.notation) in equals()
113 && Objects.equals(unit, other.unit) in equals()
114 && Objects.equals(perUnit, other.perUnit) in equals()
115 && Objects.equals(precision, other.precision) in equals()
116 && Objects.equals(roundingMode, other.roundingMode) in equals()
117 && Objects.equals(grouping, other.grouping) in equals()
118 && Objects.equals(padder, other.padder) in equals()
119 && Objects.equals(integerWidth, other.integerWidth) in equals()
120 && Objects.equals(symbol in equals()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DMacroProps.java112 public boolean equals(Object _other) { in equals() method in MacroProps
120 return Objects.equals(notation, other.notation) in equals()
121 && Objects.equals(unit, other.unit) in equals()
122 && Objects.equals(perUnit, other.perUnit) in equals()
123 && Objects.equals(precision, other.precision) in equals()
124 && Objects.equals(roundingMode, other.roundingMode) in equals()
125 && Objects.equals(grouping, other.grouping) in equals()
126 && Objects.equals(padder, other.padder) in equals()
127 && Objects.equals(integerWidth, other.integerWidth) in equals()
128 && Objects.equals(symbol in equals()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DTestStringPrepProfiles.java112 if (profileName.equals("RFC4013_SASLPREP")) { in getOptionFromProfileName()
114 } else if (profileName.equals("RFC4011_MIB")) { in getOptionFromProfileName()
116 } else if (profileName.equals("RFC4505_TRACE")) { in getOptionFromProfileName()
118 } else if (profileName.equals("RFC4518_LDAP")) { in getOptionFromProfileName()
120 } else if (profileName.equals("RFC4518_LDAP_CI")) { in getOptionFromProfileName()
122 } else if (profileName.equals("RFC3920_RESOURCEPREP")) { in getOptionFromProfileName()
124 } else if (profileName.equals("RFC3920_NODEPREP")) { in getOptionFromProfileName()
126 } else if (profileName.equals("RFC3722_ISCSI")) { in getOptionFromProfileName()
128 } else if (profileName.equals("RFC3530_NFS4_CS_PREP")) { in getOptionFromProfileName()
130 } else if (profileName.equals("RFC3530_NFS4_CS_PREP_C in getOptionFromProfileName()
[all...]
H A DTestIDNARef.java124 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
128 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
132 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
139 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
143 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
147 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
154 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
158 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
162 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
181 if(expected!=null && out != null && !out.toString().equals(expecte in doTestIDNToUnicode()
[all...]
H A DTestIDNA.java95 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
99 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
103 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
110 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
114 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
118 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
125 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
129 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
133 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
146 if(expected!=null && out != null && !out.toString().equals(expecte in doTestIDNToUnicode()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DTestStringPrepProfiles.java109 if (profileName.equals("RFC4013_SASLPREP")) { in getOptionFromProfileName()
111 } else if (profileName.equals("RFC4011_MIB")) { in getOptionFromProfileName()
113 } else if (profileName.equals("RFC4505_TRACE")) { in getOptionFromProfileName()
115 } else if (profileName.equals("RFC4518_LDAP")) { in getOptionFromProfileName()
117 } else if (profileName.equals("RFC4518_LDAP_CI")) { in getOptionFromProfileName()
119 } else if (profileName.equals("RFC3920_RESOURCEPREP")) { in getOptionFromProfileName()
121 } else if (profileName.equals("RFC3920_NODEPREP")) { in getOptionFromProfileName()
123 } else if (profileName.equals("RFC3722_ISCSI")) { in getOptionFromProfileName()
125 } else if (profileName.equals("RFC3530_NFS4_CS_PREP")) { in getOptionFromProfileName()
127 } else if (profileName.equals("RFC3530_NFS4_CS_PREP_C in getOptionFromProfileName()
[all...]
H A DTestIDNARef.java121 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
125 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
129 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
136 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
140 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
144 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
151 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
155 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
159 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
178 if(expected!=null && out != null && !out.toString().equals(expecte in doTestIDNToUnicode()
[all...]
H A DTestIDNA.java92 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
96 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
100 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
107 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
111 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
115 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
122 if(expected!=null && out != null && !out.toString().equals(expected)){ in doTestToUnicode()
126 if(expectedException!=null && !unassignedException.equals(expectedException)){ in doTestToUnicode()
130 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode()
143 if(expected!=null && out != null && !out.toString().equals(expecte in doTestIDNToUnicode()
[all...]
/third_party/protobuf/java/lite/src/test/java/com/google/protobuf/
H A DLiteTest.java1629 assertFalse(one.equals(two)); in testEquals_notEqual()
1630 assertFalse(two.equals(one)); in testEquals_notEqual()
1632 assertFalse(one.equals(TestAllTypesLite.getDefaultInstance())); in testEquals_notEqual()
1633 assertFalse(TestAllTypesLite.getDefaultInstance().equals(one)); in testEquals_notEqual()
1636 assertFalse(oneFieldSet.equals(TestAllTypesLite.getDefaultInstance())); in testEquals_notEqual()
1637 assertFalse(TestAllTypesLite.getDefaultInstance().equals(oneFieldSet)); in testEquals_notEqual()
1640 assertFalse(oneFieldSet.equals(TestAllTypesLite.getDefaultInstance())); in testEquals_notEqual()
1641 assertFalse(TestAllTypesLite.getDefaultInstance().equals(oneFieldSet)); in testEquals_notEqual()
1644 assertFalse(oneFieldSet.equals(TestAllTypesLite.getDefaultInstance())); in testEquals_notEqual()
1645 assertFalse(TestAllTypesLite.getDefaultInstance().equals(oneFieldSe in testEquals_notEqual()
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/
H A DGlobalizationPreferencesTest.java45 if (!defLocale.equals(ULocale.getDefault())) { in TestDefault()
56 if (!gpLocale0.equals(defLocale)) { in TestDefault()
63 if (!gpLocale1.equals(defFallbackLocale)) { in TestDefault()
77 if (!calLocale.equals(defLocale)) { in TestDefault()
85 if (!collLocale.equals(defLocale)) { in TestDefault()
93 if (!brkLocale.equals(defLocale)) { in TestDefault()
102 if (!dfLocale.equals(defLocale)) { in TestDefault()
111 if (!nfLocale.equals(defLocale)) { in TestDefault()
300 if (!gp.getLocale(j).toString().equals(RESULTS_LOCALEIDS[i][j])) { in TestSetLocales()
334 if (!gp.getLocale(j).toString().equals(RESULTS_LOCALEID in TestSetLocales()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DGlobalizationPreferencesTest.java48 if (!defLocale.equals(ULocale.getDefault())) { in TestDefault()
59 if (!gpLocale0.equals(defLocale)) { in TestDefault()
66 if (!gpLocale1.equals(defFallbackLocale)) { in TestDefault()
80 if (!calLocale.equals(defLocale)) { in TestDefault()
88 if (!collLocale.equals(defLocale)) { in TestDefault()
96 if (!brkLocale.equals(defLocale)) { in TestDefault()
105 if (!dfLocale.equals(defLocale)) { in TestDefault()
114 if (!nfLocale.equals(defLocale)) { in TestDefault()
303 if (!gp.getLocale(j).toString().equals(RESULTS_LOCALEIDS[i][j])) { in TestSetLocales()
337 if (!gp.getLocale(j).toString().equals(RESULTS_LOCALEID in TestSetLocales()
[all...]
H A DIntlTestDecimalFormatSymbols.java50 if(en.equals(fr)) { in TestSymbols()
56 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols()
59 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols()
63 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols()
66 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols()
78 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols()
90 if (!fr.getCurrency().equals(currency)){ in TestSymbols()
102 if (!fr.getGroupingSeparatorString().equals(en.getGroupingSeparatorString())) { in TestSymbols()
114 if (!fr.getDecimalSeparatorString().equals(en.getDecimalSeparatorString())) { in TestSymbols()
126 if (!fr.getMonetaryGroupingSeparatorString().equals(e in TestSymbols()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDecimalFormatSymbols.java47 if(en.equals(fr)) { in TestSymbols()
53 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols()
56 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols()
60 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols()
63 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols()
75 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols()
87 if (!fr.getCurrency().equals(currency)){ in TestSymbols()
99 if (!fr.getGroupingSeparatorString().equals(en.getGroupingSeparatorString())) { in TestSymbols()
111 if (!fr.getDecimalSeparatorString().equals(en.getDecimalSeparatorString())) { in TestSymbols()
123 if (!fr.getMonetaryGroupingSeparatorString().equals(e in TestSymbols()
[all...]
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
H A DLocaleNameTest.java70 if (icuname.equals(forULocale.getLanguage()) || icuname.length() == 0) { in TestLanguageNames()
78 if (!name.equals(icuname)) { in TestLanguageNames()
83 if (!name.equals(icuname)) { in TestLanguageNames()
89 if (!name.equals(icuname)) { in TestLanguageNames()
120 if (icuname.equals(forULocale.getScript()) || icuname.length() == 0) { in TestScriptNames()
134 if (!name.equals(icuname)) { in TestScriptNames()
140 if (!name.equals(icuname)) { in TestScriptNames()
151 if (!name.equals(icuname)) { in TestScriptNames()
178 if (icuname.equals(forULocale.getCountry()) || icuname.length() == 0) { in TestCountryNames()
185 if (!name.equals(icunam in TestCountryNames()
[all...]
/third_party/jerryscript/tests/jerry/
H A Darray-prototype-map.js16 Array.prototype.equals = function (array) {
22 if (!this[i].equals(array[i]))
42 assert ([1, 4, 9].map(Math.sqrt).equals([1, 2, 3]));
50 assert ([1, 4, 9].map(func).equals([1,5,11]));
52 assert ([1, "X", 10].map(func).equals([1, "X1", 12]));
59 assert (long_array.map(func).equals([0,2]));
62 assert (long_array.map(func).equals([0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,101]));
103 assert([1,2].map(func2, thisArg).equals([11, 12]));
111 assert(array_example.map(func3).equals(["0CT", "2CT"]));

Completed in 15 milliseconds

12345678910>>...59