Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  ICU4XList.mjs   Sprache: unbekannt

 
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.mjs"

const ICU4XList_box_destroy_registry = new FinalizationRegistry(underlying => {
  wasm.ICU4XList_destroy(underlying);
});

export class ICU4XList {
  #lifetimeEdges = [];
  constructor(underlying, owned, edges) {
    this.underlying = underlying;
    this.#lifetimeEdges.push(...edges);
    if (owned) {
      ICU4XList_box_destroy_registry.register(this, underlying);
    }
  }

  static create() {
    return new ICU4XList(wasm.ICU4XList_create(), true, []);
  }

  static create_with_capacity(arg_capacity) {
    return new ICU4XList(wasm.ICU4XList_create_with_capacity(arg_capacity), true, []);
  }

  push(arg_val) {
    const buf_arg_val = diplomatRuntime.DiplomatBuf.str8(wasm, arg_val);
    wasm.ICU4XList_push(this.underlying, buf_arg_val.ptr, buf_arg_val.size);
    buf_arg_val.free();
  }

  len() {
    return wasm.ICU4XList_len(this.underlying);
  }

  is_empty() {
    return wasm.ICU4XList_is_empty(this.underlying);
  }
}

[ Dauer der Verarbeitung: 0.3 Sekunden  (vorverarbeitet)  ]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge