Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/tests/non262/Intl/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  supportedValuesOf-collation.js

  Sprache: JAVA
 

// |reftest| skip-if(!this.hasOwnProperty("Intl"))

const collations = Intl.supportedValuesOf("collation");

assertEq(new Set(collations).size, collations.length, "No duplicates are present");
assertEqArray(collations, [...collations].sort(), "The list is sorted");

const typeRE = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/;
for (let collation of collations) {
  assertEq(typeRE.test(collation), true, `${collation} matches the 'type' production`);
}

for (let collation of collations) {
  assertEq(new Intl.Locale("und", {collation}).collation, collation, `${collation} is canonicalised`);
}

// Not all locales support all possible collations, so test the minimal set to
// cover all supported collations.
const locales = [
  "en"// "emoji", "eor"
  "ar"// compat
  "de"// phonebk
  "es"// trad
  "ko"// searchjl
  "ln"// phonetic
  "si"// dict
  "sv"// reformed
  "zh"// big5han, gb2312, pinyin, stroke, unihan, zhuyin
];

for (let collation of collations) {
  let supported = false;
  for (let locale of locales) {
    let obj = new Intl.Collator(locale, {collation});
    if (obj.resolvedOptions().collation === collation) {
      supported = true;
    }
  }

  assertEq(supported, true, `${collation} is supported by Collator`);
}

if (typeof reportCompare === "function")
  reportCompare(truetrue);

Messung V0.5 in Prozent
C=92 H=84 G=87

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.